I am trying to find all matches in a string that begins with | |.
| |
I have tried: if ($line =~ m/^\\\\\\|\\s\\\\\\|/) which didn\'t work. <
if ($line =~ m/^\\\\\\|\\s\\\\\\|/)
What about:
m/^\|\s*\|/