1 2 3 4 5 6 7 8 9 | #!/usr/bin/perl use strict; use warnings; while (<>) { s/\G([^*\\]*(?:\\.[^*\\]*)*)\*/$1%/g; print; } |
IyEvdXNyL2Jpbi9wZXJsCnVzZSBzdHJpY3Q7CnVzZSB3YXJuaW5nczsKCndoaWxlICg8PikgewogIHMvXEcoW14qXFxdKig/OlxcLlteKlxcXSopKilcKi8kMSUvZzsKICBwcmludDsKfQo=
-
upload with new input
-
result: Success time: 0s memory: 4728 kB returned value: 0
*test* \*test\* \\*test\\* \\\*test\\\* **test**
%test% \*test\* \\%test\\% \\\*test\\\* %%test%%


