in reply to No Pattern
With the cloaking devices turned off the code looks like this:
$_ = "Some string here"; s/.*//; s//$&Just /; s//$&Another /; s//$&Perl /; s//$&Hacker\n/; print;
The trick in this code is highlighted by the question; what pattern is matched in the last four s///'s?
--
John.
|
|---|