Search Results

2
votes

A comprehensive regex for phone number validation

Although the answer to strip all whitespace is neat, it doesn't really solve the problem that's posed, which is to find a regex. Take, for instance, my test script that downloads a web page and ex …
1
vote

Regular Expression: Match to (aa|bb) (cc)?

Unless your sample input is riddled with all sorts of permutations of your keywords, you could simplify it immensely with this: Visual .+? 2008 …