How can I save the memories from the Perl match operator in variables?
- by joachim
If I have a match operator, how do I save the parts of the strings captured in the parentheses in variables instead of using $1, $2, and so on?
... = m/stuff (.*) stuff/;
What goes on the left?