Regular expressions (often shortened to "regex") are a declarative language used for pattern matching within strings. Please also include a tag specifying the programming language or tool you are using.

learn more… | top users | synonyms (6)

1330
votes
36answers
723k 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 ...
796
votes
43answers
225k views

Using a regular expression to validate an email address

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: ...
724
votes
10answers
460k 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 ...
480
votes
25answers
264k 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 ...
295
votes
12answers
45k views

Regular expression to search for Gadaffi [closed]

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 ...
233
votes
32answers
198k 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 ...
213
votes
10answers
15k 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 ...
193
votes
5answers
130k 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 ...
186
votes
1answer
47k views

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.
180
votes
18answers
73k 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 ...
175
votes
9answers
84k 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. ...
169
votes
6answers
62k 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 ...
146
votes
13answers
65k 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 ...
129
votes
11answers
96k 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 ...
128
votes
23answers
8k 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 ...
126
votes
9answers
56k 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 ...
123
votes
10answers
172k views

Find CRLF in Notepad++

How can I find/replace all CRLF characters in notepad++? Looking for something equivalent to the ^p special character in Word.
121
votes
6answers
5k views

Convert PHP closing tag into comment

One of the lines in my script contains a PHP closing tag inside a string. Under normal operation this does not cause a problem, but I need to comment out the line. I have tried to comment out this ...
118
votes
36answers
16k 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 ...
116
votes
9answers
91k 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 ...
113
votes
16answers
11k views

How does StackOverflow generate its 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 ...
106
votes
6answers
81k 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: ...
104
votes
20answers
23k views

Is there anything like RegexBuddy in the open source world? [closed]

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 ...
103
votes
22answers
27k views

How do you implement a good profanity filter? [closed]

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 ...
101
votes
6answers
12k 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 ...
101
votes
6answers
24k views

How can I make my match non greedy in vim?

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 ...
99
votes
23answers
11k views

How do you debug a regex? [closed]

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 ...
99
votes
4answers
14k 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 ...
96
votes
11answers
63k views

How do I replace multiple spaces with a single space in C#?

How can I replace multiple spaces in a string with only one space in C#? Example: 1 2 3 4 5 would be: 1 2 3 4 5
95
votes
14answers
22k 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')
94
votes
15answers
174k 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.
94
votes
5answers
53k 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 ...
89
votes
7answers
88k 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 ...
84
votes
10answers
51k 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 ...
80
votes
6answers
90k 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 ...
79
votes
5answers
16k views

Non capturing group?

After reading some tutorials I still don't get it. Could someone explain how ?: is used and what it's good for?
79
votes
10answers
27k 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: ...
79
votes
9answers
7k 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.
77
votes
6answers
28k 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" ...
74
votes
12answers
133k views

Simple regular expression for a decimal with a precision of 2

What is the regular expression for a decimal with a precision of 2? Valid examples: 123.12 2 56754 92929292929292.12 0.21 3.1 Invalid examples: 12.1232 2.23332 e666.76 The decimal point may be ...
71
votes
6answers
40k views

How to remove all non alphanumeric characters from a string except dash

How to remove all non alphanumeric characters from a string except dash and space characters.
70
votes
10answers
88k views

Using C# regular expressions to remove HTML tags

How do I use C# regular expression to replace/remove all HTML tags, including the angle brackets? Can someone please help me with the code?
70
votes
5answers
3k views

How do HTML parses work if they're not using regexp?

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 ...
70
votes
6answers
53k views

How to negate specific word in regex?

I know that I can negate group of chars as in [^bar] but I need a regular expression where negation applies to the specific word - so in my example how do I negate an actual "bar" and not "any chars ...
64
votes
17answers
115k views

How to extract img src, title and alt from html using php?

I would like to create a page where all images which reside on my website are listed with title and alternative representation. I already wrote me a little program to find and load all HTML files, ...
64
votes
29answers
26k views

Regex Testing Tools [closed]

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 ...
63
votes
10answers
57k 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 ...
63
votes
4answers
2k 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 ...
62
votes
15answers
76k 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. ...
62
votes
13answers
25k views

Can regular expressions be used to match nested patterns?

Is it possible to write a regular expression that matches a nested pattern that occurs an unknown number of times. For example, can a regular expression match an opening and closing brace when there ...

1 2 3 4 5 1180