98
votes
21answers
79k views
RegEx match open tags except XHTML self-contained tags
I need to match all of these opening tags:
<p>
<a href="foo">
But not these:
<br />
<hr class="foo" />
I came up with this and wanted to make sure I'v …
38
votes
29answers
6k views
What is the best regular expression for validating email addresses?
Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the …
31
votes
8answers
2k views
Can you provide some examples of why it is hard to parse XML and HTML with a regex?
One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard:
People want to treat …
27
votes
6answers
2k views
Is there a regular expression to detect a valid regular expression?
Is is possible to detect a valid regular expression with another regular expression? If so please give example code below.
25
votes
23answers
2k views
Learning Regular Expressions
I already know the basics of RegEx but I'm not sure where to go from here, I'm looking for both a good and above all easy to understand guide but I am also looking for things to us …
24
votes
22answers
2k views
How far should one take e-mail address validation?
I'm wondering how far people should take the validation of e-mail address. My field is primarily web-development, but this applies anywhere.
I've seen a few approaches:
simply c …
22
votes
13answers
927 views
How do I write more maintainable regular expressions?
I have started to feel that using regular expressions decreases code maintainability. There is something evil about the terseness and power of regular expressions. Perl compounds …
20
votes
32answers
3k views
Why are regular expressions such a complicated, cryptic mess?
Often when I see regular expressions, I only see a total mess of characters. Why does it have to be this way?
I guess what I really want to know is: are there alternatives to regu …
19
votes
26answers
2k views
Regex Testing Tools
Hi all,
I know of The Regulator for testing regular expressions. And there's also RegExr for testing regular expressions as well. Does anyone know of other regex testing tools? …
18
votes
9answers
1k views
Is it worth using Python’s re.compile?
Is there any benefit in using compile for regular expressions in Python?
h = re.compile('hello')
h.match('hello world')
vs
re.match('hello', 'hello world')
17
votes
5answers
1k views
Allow only alphanumeric in textbox.
I have a textbox and it need the user not allow to enter any specialcharecters
He can enter 1. A-Z
…
17
votes
32answers
1k views
Are Regular Expressions a must for programming?
Are Regular Expressions a must for doing programming?
17
votes
18answers
1k views
Why are regular expressions considered so controversial?
On the one hand, there are many poeple who seem to see regular expressions as the holy grail. Something that looks so complicated just must be the answer to any question. So they t …
17
votes
15answers
3k views
How do you implement a good profanity filter?
Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be …
15
votes
4answers
299 views
Are there any good / interesting analogs to regular expressions in 2d?
Are there any good (or at least interesting but flawed) analogs to regular expressions in two dimensions?
In one dimension I can write something like /aaac?(bc)*b?aaa/ to quickly …
