Search Results

14
votes

Perl Regex Match and Removal

Your regex is badly chosen on several points: Instead of matching two slashes specifically, you use .. to match two characters that can be anything at all, presumably …
0
votes

Regex to replace Boolean with bool

… … Do not match if in the middle of a string (thanks nohat). Do not match if in a comment. (// or /**/) No ca …
3
votes

Does Perl’s /m regex modifier match differently on Windows?

There is no magic \n. Both \n and \r always mean exactly one character, and on all ASCII-based platforms that is \cJ and \cM respect …