Help for this page

Select Code to Download


  1. or download this
    #example 1
    $content =~ s/(.{1,$width}) /$1<BR>/g;
    print $content;
    
  2. or download this
    #example 2
    $content =~ s/(.{1,$width}) |([^ ]{$width})/$1$2<BR>/g;
    print $content;