Help for this page

Select Code to Download


  1. or download this
        $default_title =~ s/(.{50}).*/$1/;
        $default_title =~ s/./$ctr++<50?$&:""/ge;
        $default_title = pack "A50", $default_title;
        $default_title = join "", (split //, $default_title)[0..50];
    
  2. or download this
        substr($default_title, 50) = "";