Tagged Questions

Regular expressions are a declarative language, mainly used for pattern matching within strings. Please include a tag specifying the programming language you are using, together with this tag.

learn more… | top users | synonyms (6)

931
votes
38answers
423k 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've got it right. I am ...
307
votes
37answers
59k views

How to use a regular expression to validate an 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 expression is: ...
261
votes
14answers
43k views

Regular expression to search for Gadaffi

I'm trying to search for the word Gadaffi. What's the best regular expression to search for this? My best attempt so far is: \b[KG]h?add?af?fi$\b But I still seem to be missing some journals. Any ...
235
votes
6answers
169k views

Regular expression to match string not containing a word?

I know it is possible to match for the word and using tools options reverse the match. (eg. by grep -v) However I want to know if it is possible using regular expressions to match lines which does not ...
129
votes
9answers
8k 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 a file as a sequence ...
107
votes
17answers
60k views

Validate email address in Javascript?

How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the ...
104
votes
23answers
5k views

Why are regular expressions so controversial?

On the one hand, there are many people who seem to see regular expressions as the holy grail. Something that looks so complicated just must be the answer to any question. They think that every ...
98
votes
4answers
77k views

jQuery selector regular expressions

I am after documentation on using wildcard or regular expressions (not sure on the exact terminology) with a jQuery selector. I have looked for this myself but have been unable to find information on ...
94
votes
25answers
97k views

A comprehensive regex for phone number validation

I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following: 1-234-567-8901 ...
84
votes
6answers
11k views

Is there any way to put malicious code into Regex?

I want to add regex search capability to my public web page. Other than html encoding the output, do I need to do anything to guard against malicious user input? Google searches are swamped by ...
84
votes
1answer
21k views

Ruby - Match All Occurrences Of a Regex

Is there a quick way to find every match of a regular expression in Ruby? I've looked through the Regex object in the Ruby STL and searched on Google to no avail. Thanks!
75
votes
7answers
31k views

Regular expressions in an Objective-C Cocoa application

Initial Googling indicates that there's no built-in way to do regular expressions in an Objective-C Cocoa application. So four questions: Is that really true? Are you kidding me? Ok, then is there ...
69
votes
37answers
6k views

Learning Regular Expressions [closed]

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 use RegEx's for, it's ...
67
votes
7answers
32k views

How do you pass a variable to a Regular Expression JavaScript?

I'd like to create a String.replaceAll() method in JavaScript and I'm thinking that using a RegEx would be most terse way to do it. However, I can't figure out how to pass a variable in to a RegEx. ...
64
votes
20answers
4k views

How do you debug a regex?

Regular expressions can become quite complex. The lack of white space makes them difficult to read. I can't step though a regular expression with a debugger. So how do experts debug complex regular ...
63
votes
4answers
5k views

How does this giant regex work?

I recently found the code below in one of my directories, in a file called doc.php. The file functions or links to a file manager. It's quite nicely done. Basically, it lists all the files in the ...
63
votes
11answers
29k views

How to replace plain URLs with links?

I am using the function below to match URLs inside a given text and replace them for HTML links. The regular expression is working great, but currently I am only replacing the first match. How I can ...
61
votes
20answers
15k 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 filtered out. Where ...
60
votes
5answers
2k views

If you're not supposed to use Regular Expressions to parse HTML, then how are HTML parsers written?

I see questions every day asking how to parse or extract something from some HTML string and the first answer/comment is always "Don't use RegEx to parse HTML, lest you feel the wrath!" (that last ...
59
votes
5answers
20k views

How do you access the matched groups in a javascript regex?

I think I must just be really tired, because this should be really simple, but it's just not working for me. I want to match a portion of a string using a regex and then access that parenthesized ...
59
votes
8answers
4k 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.
58
votes
13answers
32k views

What is the best regular expression to check if a string is a valid URL?

How can I check if a given string is a valid URL address? My knowledge of regular expressions is basic and doesn't allow me to choose from the hundreds of regular expressions I've already seen on the ...
57
votes
0answers
7k views

How to parse HTML with PHP? [closed]

Possible Duplicate: How to parse and process HTML with PHP? Suggestion for a reference question. Stack Overflow has dozens of "How to parse HTML" questions coming in every day. However, ...
57
votes
9answers
46k views

Regular expression to match hostname or IP Address?

Does anyone have a regular expression handy that will match any legal DNS hostname or IP address? It's easy to write one that works 95% of the time, but I'm hoping to get something that's well tested ...
53
votes
5answers
24k views

regular expression pattern not matching anywhere in string

I am trying to match <input> type “hidden” fields using this pattern: /<input type="hidden" name="([^"]*?)" value="([^"]*?)" />/ This is sample form data: <input type="hidden" ...
53
votes
7answers
57k views

JQuery validate: How to add a rule for regular expression validation?

I am new to JQuery and am using the JQuery validation plugin. Great stuff! I want to migrate my existing ASP.NET solution to use JQuery instead of the ASP.NET validators. I am missing a replacement ...
51
votes
4answers
1k views

Does lookaround affect which languages can be matched by regular expressions?

There are some features in modern regex engines which allow you to match languages that couldn't be matched without that feature. For example the following regex using back references matches the ...
51
votes
12answers
7k 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')
49
votes
17answers
11k views

Is there anything like RegexBuddy in the open source world?

I've used RegexBuddy several times and found it to be a really useful tool. Is there anything like it in the open source world, preferably something that is platform agnostic? (the fact that ...
47
votes
7answers
2k views

Code Golf: Regex parser

The goal Today's Code Golf challenge is to create a regex parser in as few characters as possible. The syntax No, I'm not asking you to match Perl-style regular expressions. There's already a very ...
47
votes
8answers
12k views

Split a string by spaces — preserving quoted substrings — in Python

I have a string which is like this: this is "a test" I'm trying to write something in Python to split it up by space while ignoring spaces within quotes. The result I'm looking for is: ...
45
votes
8answers
33k views

Regular Expressions: Is there an AND operator?

Obviously, you can use |(pipe?), to represent OR, but can you match and as well? Specifically, I'm wanting to match paragraphs of text that contain ALL of a certain phrase, but in no particular ...
45
votes
3answers
24k views

How to escape text for regular expression in Java

Does Java have a built-in way to escape arbitrary text so that it can be included in a regular expression? For example, if my users enter "$5", I'd like to match that exactly rather than a "5" after ...
45
votes
15answers
4k views

How does StackOverflow generate it's SEO-friendly URLs?

What is a good complete Regex or some other process that would take the title: How do you change a title to be part of the url like Stackoverflow? And turn it into ...
41
votes
5answers
161k views

Regular expression field validation in jQuery

In jQuery, is there a function/plugin which I can use to match a given regular expression in a string? For example, in an email input box, I get an email address, and want to see if it is in the ...
39
votes
3answers
2k views

Worst Case Analysis for Regular Expressions

Are there any tools that will take a particular regular expression and return the worst case scenario in terms of the number of operations required for a certain number of characters that the regular ...
39
votes
3answers
30k views

How to do a regular expression replace in MySQL?

I have a table with ~500k rows; varchar(255) UTF8 column filename contains a file name; I'm trying to strip out various strange characters out of the filename - thought I'd use a character class: ...
38
votes
10answers
33k views

C++: what regex library should I use?

I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.) QUESTION: What ...
37
votes
9answers
915 views

Why are most string manipulations in Java based on regexp?

In Java there are a bunch of methods that all have to do with manipulating Strings. The simplest example is the String.split("something") method. Now the actual definition of many of those methods is ...
37
votes
10answers
5k views

Regular expression joke explanation

I love regex. I’ve used them with grep, Perl, Java, C, and a variety of others. I have Jeffery Friedl’s awesome book on them, and I studied their theory in college. But for years I have been ...
36
votes
5answers
8k views

How can I make my match non greedy?

I have a big HTML file that has lots of markup that looks like this: <p class="MsoNormal" style="margin: 0in 0in 0pt;"> <span style="font-size: small; font-family: Times New ...
36
votes
9answers
25k views

Non greedy regex matching in sed?

I'm trying to use sed to clean up lines of URLs to extract just the domain.. So from: http://www.suepearson.co.uk/product/174/71/3816/ I want: http://www.suepearson.co.uk/ (either with or ...
35
votes
28answers
5k views

Regex Testing Tools

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? Do any of these tools allow ...
34
votes
4answers
43k views

Split Java String by New Line

I'm trying to split text in a JTextArea using a regex to split the String by \n However, this does not work and I also tried by \r\n|\r|n and many other combination of regexes. Code: public void ...
34
votes
11answers
66k views

Simple regular expression for a decimal with a precision of 2?

I know this may be the simplest question ever asked on Stack Overflow, but what is the regular expression for a decimal with a precision of 2? Valid examples: 123.12 2 56754 92929292929292.12 0.21 ...
33
votes
1answer
2k views

The recognizing power of “Modern” Regexes

What class of languages do real modern regexes actually recognise? Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
33
votes
12answers
79k views

Regular Expression for alphanumeric and underscores

I would like to have a regular expression that checks if a string contains only upper and lowercase letters, numbers, and underscores.
33
votes
14answers
43k views

PHP validation/regex for URL

I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations. ...
32
votes
34answers
3k views

Are Regular Expressions a must for programming?

Are Regular Expressions a must for doing programming?
31
votes
3answers
896 views

Match a^n b^n c^n (e.g. “aaabbbccc”) using regular expressions (PCRE)

It is a well known fact that modern regular expression implementations (most notably PCRE) have little in common with the original notion of regular grammars. For example you can parse the classical ...

1 2 3 4 5 610