Help for this page

Select Code to Download


  1. or download this
    $txt = ' \*/  ';
    $txt =~s/\\/\\\\/g;  # what I expected ' \\*/ ';
    print $txt;
    
  2. or download this
    $txt = ' __\\U//__ ';
    $txt =~s/\\/\\\\/g;
    print $txt;
    #prints __\\U//__