It is clear that there are a lot of problems that look like a simple regex expression will solve, but which prove to be very hard to solve with regex.
How does someone that is not an expert in regex, know if he/she should be learning regex to solve a given problem?
(see "Regex to parse C# source code to find all strings" for way I am asking this question)
This seems to sums it up well:
Some people, when confronted with a problem, think “I know, I'll use regular expressions.”
Now they have two problems...
(I have just change the title of the question to make it more specific, as some of the problem with Regex in C# are solved in perl and jscript, e.g. the fact that the two level of quoting makes a Regex so unreadable)
