Help for this page
$txt = ' \*/ '; $txt =~s/\\/\\\\/g; # what I expected ' \\*/ '; print $txt;
$txt = ' __\\U//__ '; $txt =~s/\\/\\\\/g; print $txt; #prints __\\U//__