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
725k 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 ...
800
votes
43answers
227k 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: ...
105
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 ...
237
votes
32answers
200k 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 ...
180
votes
18answers
74k 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 ...
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 ...
486
votes
25answers
267k 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 ...
57
votes
13answers
15k views

Using regular expressions to parse HTML: why not?

It seems like every question on stackoverflow where the asker is using regex to grab some information from HTML will inevitably have an "answer" that says not to use regex to parse HTML. Why not? I'm ...
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" ...
727
votes
10answers
463k 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 ...
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 ...
57
votes
0answers
8k views

How to parse HTML with PHP? [duplicate]

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, ...
63
votes
13answers
26k 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 ...
107
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: ...
130
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 ...
64
votes
17answers
116k 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, ...
119
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 ...
193
votes
5answers
131k 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 ...
63
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. ...
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 ...
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 ...
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 ...
47
votes
5answers
12k views

Unicode equivalents for \w and \b in Java regular expressions?

Many modern regex implementations interpret the \w character class shorthand as "any letter, digit, or connecting punctuation" (usually: underscore). That way, a regex like \w+ matches words like ...
70
votes
10answers
89k 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?
30
votes
6answers
10k views

How to find all Youtube video ids in a string using a regex?

I have a textfield where users can write anything. For example: Lorem Ipsum is simply dummy text. http://www.youtube.com/watch?v=DUQi_R4SgWo of the printing and typesetting industry. Lorem ...
3
votes
3answers
5k views

How to validate an email address in PHP [duplicate]

I have this function to validate an email addresses: function validateEMAIL($EMAIL) { $v = "/[a-zA-Z0-9_-.+]+@[a-zA-Z0-9-]+.[a-zA-Z]+/"; return (bool)preg_match($v, $EMAIL); } Is this okay ...
170
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 ...
15
votes
9answers
22k views

Regex to match URL

I am using the following regex to match a URL: $search = ...
39
votes
15answers
53k views

Regular Expression to match outer brackets

I need a regular expression to select all the text between two outer brackets. Example: some text(text here(possible text)text(possible text(more text)))end text Result: (text here(possible ...
16
votes
3answers
1k views

Difference between .*? and .* for regex

I'm trying to split up a string into two parts using regex. The string is formatted as follows: text to extract<number> I've been using (.*?)< and <(.*?)> which work fine but after ...
51
votes
1answer
3k 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 ...
38
votes
19answers
8k 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 ...
89
votes
7answers
89k 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 ...
41
votes
9answers
33k views

Java: splitting a comma-separated string but ignoring commas in quotes

I have a string vaguely like this: foo,bar,c;qual="baz,blurb",d;junk="quux,syzygy" that I want to split by commas -- but I need to ignore commas in quotes. How can I do this? Seems like a regexp ...
-1
votes
1answer
26k views

Email Validation - Regular Expression [duplicate]

Possible Duplicate: What is the best regular expression for validating email addresses? Does anyone have a good email regular expression? I'm writing in .NET 2.0 if that matters...
25
votes
3answers
10k views

How to escape regular expression in javascript?

I have code like: pattern = 'arrayname[1]'; // fetch from dom, make literal here just for example reg = new RegExp(RegExp.quote(pattern), 'g'); mystring.replace(reg, 'arrayname[2]'); but it fails ...
179
votes
9answers
85k 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. ...
13
votes
1answer
5k views

Is there something like a counter variable in regular expression replace?

If I have a lot of matches, for example in multi line mode, and I want to replace them with part of the match as well as a counter number that increments. I was wondering if any regex implementation ...
35
votes
6answers
15k views

Javascript + Unicode

Does anyone know of any JavaScript libraries that support Unicode-aware regular expressions? For example, there should be something akin to \w that can match any code-point in Letters or Marks ...
7
votes
5answers
1k views

Doubt in parsing data in perl .Where am I going wrong

I have a long htdoc of similar pattern which goes on like this: <td class="MODULE_PRODUCTS_CELL " align="center" valign="top" height="100"> <table width="100" ...
20
votes
6answers
19k views

parse youtube video id using preg_match

I am attempting to parse the video ID of a youtube URL using preg_match. I found a regular expression on this site that appears to work; ...
33
votes
2answers
15k views

Escape string for use in Javascript regex [duplicate]

Possible Duplicate: Is there a RegExp.escape function in Javascript? I am trying to build a javascript regex based on user input: function FindString(input) { var reg = new RegExp('' ...
15
votes
3answers
6k views

html parsing of cricinfo scorecards

Aim I am looking to scrape 20/20 cricket scorecard data from the Cricinfo website, ideally into CSV form for data analysis in Excel As an example the current Australian Big Bash 2011/12 scorecards ...
38
votes
18answers
54k views

Getting parts of a URL (Regex)

Given the URL (single line): http://test.example.com/dir/subdir/file.html How can I extract the following parts using regular expressions: The Subdomain (test) The Domain (example.com) The path ...
85
votes
5answers
17k 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?
51
votes
8answers
57k views

Java - escape string to prevent SQL injection

I'm trying to put some anti sql injection in place in java and am finding it very difficult to work with the the "replaceAll" string function. Ultimately I need a function that will convert any ...
36
votes
5answers
18k views

Regular expression to match non-english characters?

What is the easiest way to match non-english characters in a Regex? I would like to match all words individually in an input string, but the language may not be English, so I will need to match things ...
95
votes
5answers
54k 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 ...
22
votes
4answers
5k views

Why RegExp with global flag in Javascript give wrong results?

What is the problem with this regular expression when I use the global flag and the case insensitive flag? Query is a user generated input. The result should be [true, true]. var query = 'Foo B'; var ...
19
votes
5answers
21k views

Matching numbers with regular expressions — only digits and commas

I can't figure out how to construct a regex for the example values: 123,456,789 -12,34 1234 -8 Could you help me?

1 2 3 4 5 119