EOL Special Char not matching
- by Aurélien Ribon
Hello,
I am trying to find every "a - b, c, d" pattern in an input string.
The pattern I am using is the following :
"^[ \t]*(\\w+)[ \t]*->[ \t]*(\\w+)((?:,[ \t]*\\w+)*)$"
This pattern is a C# pattern, the "\t" refers to a tabulation (its a single escaped litteral, intepreted by the .NET String API), the "\w" refers to the well know regex…