Search Results

15
votes
13answers
755 views

When is a problem too complex for a regular expression?

Please don't answer the obvious, but what are the limit signs that tell us a problem should not be solved using reg exprs. For example: Why is a complete email validation too complex for a …
4
votes

Under what situations are regular expressions really the best way to solve the problem?

RexExprs are good for: Text Format Validations (email, url, numbers) Text searchs/substitution. Mappings (e.g. url pattern to function call) Filtering some …