Help for this page

Select Code to Download


  1. or download this
    $text = "test of  this # ? my 0923 5834t674";
    .... .. .......... . . .. .... ........
    
  2. or download this
    if ($text =~ $nbsp) {
    $text =~ s/(.*)$nbsp(.*)//g;    # ( ) PUTS TEXT INTO $1, $2, etc.
    $tex1 = $1;    # WHAT COMES BEFORE THE PRE TAG
    ...
    $text =~ s/[^ ]/$repl/g;
    }
    print "$text\n";