15
votes
16answers
882 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 …
4
votes
4answers
610 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 …
3
votes
6answers
1k views
Non greedy regex matching in sed?
I'm trying to use sed to clean up lines of URLs to extract just the domain..
e.g., from:
http://www.suepearson.co.uk/product/174/71/3816/
I want:
http://www.suepearson.co.uk/
…
3
votes
6answers
501 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 qui …
3
votes
3answers
610 views
Removing redundant line breaks with regular expressions
Hello,
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 …
2
votes
5answers
163 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. H …
2
votes
5answers
279 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 e …
2
votes
9answers
450 views
Wondering how to do PHP explode over every other word
Lets say I have a string - $string = "This is my test case for an example."
If I do explode based on ' ' I get an Array('This','is','my','test','case','for','an','example.');
Wha …
2
votes
2answers
660 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 …
2
votes
3answers
782 views
Matching a time string with a regular expression
I would like to match the time (10.00) from a string with the date and time ("21.01.08 10.00"). I'm using the following regular expression:
new RegExp("\\b[0-9]{1,2}\\.[0-9]{1,2}\ …
2
votes
1answer
228 views
Storing PCRE compiled regexes in C/C++
Is there an efficient way to store the compiled regexes (compiled via regcomp(), PCRE) in a binary file, so that later I can just read from the file and call regexec()?
Or is it j …
1
vote
4answers
101 views
Need to prevent PHP regex segfault
Why does the following segfault, and how can I prevent it?
<?php
$str = ' <fieldset> <label for="go-to">Go to: </label> '
. str_repeat(' ', 10000)
…
1
vote
2answers
69 views
Matching contents inside php tags using regex
Hi,
I have some trouble matching the contents inside php tags.
Currently I have this code, but it's not working for me:
<?php preg_match_all('/<\?php(.+)\?>/', $str, $i …
1
vote
3answers
113 views
Deploying C app that uses the PCRE library
Hello,
I wrote a C app that uses the PCRE library. Everything works on my own computer. However, when I copy the binary over to another computer and run it, it gives the following …
1
vote
1answer
84 views
PCRE to replace #334455 hex with #345
I'm writing a function that replaces long hex coded color (#334455) with short one (#345). This can be only done when each color in hex is multiple of 17 (each hex pair consists of …
