Fill in the blanks by jamesaxl

@chars = split(//,<STDIN>);\x0d
while(<STDIN>){\x0d
    $text.=$_\x0d
}\x0d
foreach(@chars){\x0d
    $text =~ s/_/$_/;\x0d
}\x0d
print $text;

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page