Perl-Compatible Regular Expressions: regular expressions as understood by Perl; also, a library offering PCRE to other programs.

learn more… | top users | synonyms

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 ...
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 ...
31
votes
3answers
903 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 ...
20
votes
16answers
2k views

Efficiently querying one string against multiple regexes

Lets say that I have 10,000 regexes and one string and I want to find out if the string matches any of them and get all the matches. The trivial way to do it would be to just query the string one by ...
12
votes
2answers
172 views

How can I use the same regular expression in different programming languages?

I've seen this question, and I know from experience that every language seems to support a different dialect of regex. I figure the problem has been around for a long time, so somebody must have ...
11
votes
1answer
461 views

Converting PCRE recursive regex pattern to .NET balancing groups definition

PCRE has a feature called recursive pattern, which can be used to match nested subgroups. For example, consider the "grammar" Q -> \w | '[' A ';' Q* ','? Q* ']' | '<' A '>' A -> (Q | ...
10
votes
4answers
593 views

PCRE in Haskell - what, where, how?

I've been searching for some documentation or a tutorial on Haskell regular expressions for ages. There's no useful information on the HaskellWiki page. It simply gives the cryptic message: ...
10
votes
1answer
359 views

How does this PCRE pattern detect palindromes?

This question is an educational demonstration of the usage of lookahead, nested reference, and conditionals in a PCRE pattern to match ALL palindromes, including the ones that can't be matched by ...
9
votes
2answers
5k views

Unicode Regex; Invalid XML characters

The list of valid XML characters is well known, as defined by the spec it's: #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] My question is whether or not it's possible to ...
8
votes
1answer
132 views

Can regexes containing nongreedy (reluctant) quantifiers be rewritten to use only greedy ones?

Suppose I have a regex language supporting literals, positive and negative character classes, ordered alternation, and the greedy quantifiers ?, *, and +. (This is essentially a subset of PCRE without ...
8
votes
4answers
162 views

Are ^$ and $^ in PHP regex the same?

Why do both of these regexes match successfully? if(preg_match_all('/$^/m',"",$array)) echo "Match"; if(preg_match_all('/$^\n$/m',"\n",$array)) echo "Match";
8
votes
4answers
5k views

Help with Linker error LNK2038 !

I am trying to port a small app of mine from Win XP and VS 2005 to Win 7 and VS 2010. The app compiles and runs smoothly in Debug mode, however in Release mode I get the following error : ...
8
votes
1answer
2k views

Can PCRE regex match a null character?

I have a text source with nulls in it and I need to pull them out along with my regex pattern. Can regex even match a null character? I only realized I had them when my pattern refused to match ...
7
votes
2answers
135 views

Can regexes containing ordered alternation be rewritten to use only unordered alternation?

Suppose I have a regex language supporting literals, positive and negative character classes, ordered alternation, the greedy quantifiers ?, *, and +, and the nongreedy quantifiers ??, *?, and +?. ...
7
votes
1answer
666 views

Will [a-z] ever match accented characters in PREG/PCRE?

I'm already aware that \w in PCRE (particularly PHP's implementation) can sometimes match some non-ASCII characters depending on the locale of the system, but what about [a-z]? I wouldn't think so, ...
6
votes
1answer
285 views

Converting ereg expressions to preg

Since POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old expressions to PCRE (Perl Compatible Regular Expressions) (preg). Per example, I ...
6
votes
3answers
111 views

PHP:PCRE: How to replace repeatable char

for example I have following string: a_b__c___d____e How to preg_replace char _ to char '-', but only if part ' __...' contains more than N repeated _. I hope you understand me )) source: ...
6
votes
2answers
181 views

How to determine if a non-English string is in upper case?

I'm using the following code to check for a string where all the characters are upper-case letters: if (preg_match('/^[\p{Lu}]+$/', $word)) { This works great for English, but fails to ...
6
votes
1answer
633 views

Detect if PCRE was built without the --enable-unicode-properties or --enable-utf8 configuration switches

I've a PHP library that uses a number of regular expressions featuring the \P expressions for multibyte strings, e.g. ((((?:\P{M}\p{M}*)+?)|(\'[^\']*\')|(\"[^\"]*\"))!)?\$?([a-z]{1,3})\$?(\d+) ...
6
votes
3answers
1k views

php regex word boundary matching in utf-8

I have the following php code in a utf-8 php file: var_dump(setlocale(LC_CTYPE, 'de_DE.utf8', 'German_Germany.utf-8', 'de_DE', 'german')); var_dump(mb_internal_encoding()); ...
6
votes
4answers
1k views

Why is recursive regex not regex?

I was reading through some of the responses in this question and saw that a few people said that recursive regular expressions were not strictly speaking regular expressions. Why is this?
5
votes
1answer
43 views

Is it possible that Lua's libpcre implementation does not support '\d'?

I find that \d is not recognized as [0-9]. See my console output below: > require "rex_pcre" > return rex_pcre.new("[0-9]+"):exec("1234") 1 4 table: 0x2141ce0 > return ...
5
votes
2answers
116 views

Does PCRE support unicode string correctly?

Does PCRE support unicode string correctly?
5
votes
2answers
320 views

needed: open source C/C++ regular expression library that does unicode

I'm looking for a good open source C/C++ regular expression library that has full Unicode support. I'm using this in an environment where the library might get ASCII, UTF-8, or UTF-16. If it gets ...
5
votes
2answers
251 views

Does Common Lisp have the fastest PCRE implementation?

A friend claimed that Common Lisp has the fastest Perl-compatible regular expression library of any language, including Perl itself, because with an optimizing JIT compiler like SBCL, CL-PPCRE can ...
5
votes
5answers
233 views

Optimized regex for N words around a given word (UTF-8)

I'm trying to find an optimized regex to return the N words (if available) around another one to build a summary. The string is in UTF-8, so the definition of "words" is larger than just [a-z]. The ...
5
votes
2answers
14k views

How to change PHP's eregi to preg_match

I need help, below is a small VERY basic regex to somewhat validate an email, I do realize it does not work the greatest but for my needs it is ok for now. It currently uses PHP's eregi function ...
5
votes
6answers
1k views

What flavour of regular expression is grep?

I'm guessing it's not a Perl compatible regular expression, since there's a special kind of grep which is specifically PCRE. What's grep most similar to? Are there any special quirks of grep that I ...
5
votes
2answers
5k views

Tilde operator in Regular expressions

I want to know what's the meaning of tilde operator in regular expressions. I have this statement: if (!preg_match('~^\d{10}$~', $_POST['isbn'])) { $warnings[] = 'ISBN should be 10 digits'; } ...
5
votes
4answers
5k views

Need a regex to match a variable length string of numbers that can't be all zeros

I need to validate an input on a form. I'm expecting the input to be a number between 1 to 19 digits. The input can also start with zeros. However, I want to validate that they are not all zeros. I've ...
5
votes
2answers
5k views

preg_match_all() [function.preg-match-all]: Unknown modifier ']'

Using a few different patterns but they each come up with this error - so what's wrong? My shortest one to diagnose is: $pattern = "<img([^>]*[^/])>"; preg_match_all($pattern, $subject, ...
4
votes
2answers
60 views

Info about backtracking control verbs

I been searching info about this verbs, There is not much info about that, i only found info like this Wikipedia but is not about the verbs, they just mentioned. I googled it, but not so lucky, i just ...
4
votes
1answer
79 views

Why doesn't this regex reject trailing slashes (using negative lookahead)?

I'm using the following regex (PCRE) to (very basically) validate an URL to start with http[s]:// and reject trailing slashes: ^https?://.+(?!/)$ However, the negative lookahead does not prevent the ...
4
votes
2answers
206 views

Regex Syntax changes between POSIX and PCRE

We are currently in the process of upgrading our Varnish Cache servers. As part of the process, we upgraded only one of them to see how it behaves compared to the older versions. Some of the major ...
4
votes
2answers
153 views

Avoiding processing special preg characters in replacement string

When using preg_replace() in PHP with strings generated at runtime, one can protect special regex characters (such as '$' or '+') in the search string by using preg_quote(). But what's the correct way ...
4
votes
3answers
155 views

Mathematica regular expressions on unicode strings

This was a fascinating debugging experience. Can you spot the difference between the following two lines? StringReplace["–", RegularExpression@"[\\s\\S]" -> "abc"] StringReplace["-", ...
4
votes
5answers
553 views

PCRE: Find matching brace for code block

Is there a way for PCRE regular expressions to count how many occurrences of a character it encounters (n), and to stop searching after it has found n occurrences of another character (specifically { ...
4
votes
2answers
656 views

UTF-8 characters in preg_match_all (PHP)

I have preg_match_all('/[aäeëioöuáéíóú]/u', $in, $out, PREG_OFFSET_CAPTURE); If $in = 'hëllo' $out is: array(1) { [0]=> array(2) { [0]=> array(2) { [0]=> string(2) "ë" ...
4
votes
3answers
686 views

PHP: PREG: How to match special chars like a grave?

I'd like to give my users the option to not only fill in letters and numbers, but also "special" letters like the "á", "é" etc. Though I do not want them to be able to use symbols like "!", "@", "%" ...
4
votes
2answers
912 views

RegEx: \w - “_” + “-” in UTF-8

I need a regular expression that matches UTF-8 letters and digits, the dash sign (-) but doesn't match underscores (_), I tried these silly attempts without success: ([\w-^_])+ ([\w^_]-?)+ ...
4
votes
3answers
205 views

regex matches repeating group {0,2} or {0,4} but {0,3} doesn't

first, this is using preg. String I'm trying to match: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa b c d xp My regex and their matches: (\S*\s*){0,1}\S*p = "d xp" (\S*\s*){0,2}\S*p = "c d xp" ...
4
votes
5answers
379 views

Help with Regex - Wordpress (search-regex)

My first attempt using RE has me stuck. I'm using Regex on a Wordpress website via the Search-Regex Plugin and need to match on a specific " buried within a bunch of html code. HTML example: ...
4
votes
6answers
4k views

Invert match with regexp

With PCRE, how can you construct an expression that will only match if a string is not found. If I were using grep (which I'm not) I would want the -v option. A more concrete example: I want my ...
4
votes
2answers
8k views

Removing redundant line breaks with regular expressions

I'm developing a single serving site in PHP that simply displays messages that are posted by visitors (ideally surrounding the topic of the website). Anyone can post up to three messages an hour. ...
4
votes
3answers
773 views

Why am I getting a buffer overrun error with this line of code?

I only have 1 line of code, and this is: pcrecpp::RE re("abc"); inside a function OnBnClickedButtonGo(). And this function fails in Release mode, but it works OK in debug mode. (I am using Visual ...
4
votes
9answers
2k views

Test/expand my email regex

I'm really not confident with Regex, I know some basic syntax but not enough to keep me happy. I'm trying to build a regular expression to check if an email is valid. So far here's what I've got: ...
3
votes
2answers
35 views

How to match all accented forms of a particular character?

I'd like to write a regular expression which will match all accented forms of a particular character in text encoded using some Unicode encoding, without explicitly listing out all such forms in a ...
3
votes
1answer
29 views

PCRE: Capturing optional pattern using PHP

I have a string from which I need to capture one and possibly two substrings (using PHP): The first one is mandatory The second one is optional The first and second ones are separated by unknown ...
3
votes
1answer
69 views

Is there a version of subRegex which supports PCRE?

I need to use subRegex but it seems to only work for Posix regular expressions. Is there something that does the same thing but works with PCRE instead, or is there some setting I can change to make ...
3
votes
3answers
134 views

Apache redirect regexp: match something that is not following something

What regexp should stand for "everything that does not follow 'index.php' should point to 'index.php/$1'" ? For example, "http://mysite/moo" should point to "http://index.php/moo" while ...

1 2 3 4 5 8