I am trying to find all matches in a string that begins with | |.
I have tried: if ($line =~ m/^\\\|\s\\\|/) which didn't work.
Any ideas?
|
|
You are escaping the pipe one time too many, effectively escaping the backslash instead.
|
||||
|
|
|
If it's a literal string you're searching for, you don't need a regular expression.
Or it might be clearer to do this:
You might also want to look at quotemeta when you want to use a literal in a regexp. |
|||
|
|
Pipe character should be escaped with a single backslash in a Perl regex. (Perl regexes are a bit different from POSIX regexes. If you're using this in, say, grep, things would be a bit different.) If you're specifically looking for a space between them, then use an unescaped space. They're perfectly acceptable in a Perl regex. Here's a brief test program:
|
||||
|
|
|
Remove the ^ and the double back-slashes. The ^ forces the string to be at the beginning of the string. Since you're looking for all matches in one string, that's probably not what you want.
|
|||
|
|
|
What about:
|
|||||
|