Tagged Questions

29
votes
21answers
5k views

Regexp recognition of email address hard?

I recently read somewhere that writing a regexp to match an email address, taking into account all the variations and possibilities of the standard is extremely hard and is significantly more ...
0
votes
4answers
109 views

Using if clause inside Regular Expression

I am currently coding a .net windows app using vb.net. I am trying to pass a regular expression to Regex.Match to extract certain texts from an article. How do I write an if condition within a ...
0
votes
1answer
173 views

Normalizing strings for text matching with preg_replace

I'm performing a pretty simple text matching between a set of names from my MySQL db and a set of strings from a CSV file. Before the actual comparison, I run preg_replace with an array of options to ...