Search Results

2
votes

Passing a regex substitution as a variable in Perl?

s/// is not a regex. Thus, you can't pass it as a regex. I don't like eval for this, it's very fragile, with a lot of bordercases. I think it's best to tak …
10
votes

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

For these regexes: m/\015\012/ms m/\015\012/s Both /m and /s are meaningless. /s: makes . match \n …
11
votes

Why is $1 empty in my substitution?

There's an error in your regex so that phrase will never match anything: inline99_*?\.jpg ^^^ I think you forgot \d in front of the star, judg …
0
votes

regular expression for finding parts of a string within another

The best way to do it with regular expressions is, IMO: A. Sort the characters in the large string (search space) Thus: turn "catdog" into "acdgot" B. Do the s …
7
votes

A regex problem I can’t figure out (negative lookbehind)

Assuming your regex engine supports (negative) lookbehind: /(?<!-)-myString/ Perl does, Javascript doesn't, for example. …
0
votes

What regex will capitalize any letters following whitespace?

You want to match letters behind whitespace, or at the start of a string. Perl can't do variable length lookbehind. If it did, you could have used this: s/(?<=\s|^)(\w)/\ …