|
|
| No such thing as a small change | |
| PerlMonks |
Answer: How do I match this without lookbehind? |
| ( #45690=categorized answer: print w/ replies, xml ) | Need Help?? |
|
Q&A > regular expressions > How do I match this without lookbehind? contributed by chipmunk
When the Regular Expressions book was published, the latest version of Perl was 5.005_03. As of 5.6.0, Perl does support lookbehind.
However, you really don't need lookbehind or split to solve this problem:
@matches = $string =~ /~?./g;
|
|
||||||||||||||||||