Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
11k views

String negation using regular expressions

Is it possible to do string negation in regular expressions? I need to match all strings that do not contain the string "..". I know you can use ^[^\.]*$ to match all strings that do not contain "." ...
7
votes
6answers
889 views

Regex: what does (?! …) mean?

The following regex finds text between substrings FTW and ODP. /FTW(((?!FTW|ODP).)+)ODP+/ What does the (?!...) do?
6
votes
2answers
339 views

Mod Rewrite Regex - Multiple Negative Lookaheads

I currently have the working Mod Rewrite Regex: RewriteEngine On RewriteCond %{QUERY_STRING} ^(.*)$ RewriteRule ^(.*/)?((?:cmd)[^/]*)/((?!(?:cmd)[.+]*)(.+)) $1?$2=$3&%1 [L] That regex takes the ...
6
votes
6answers
576 views

Regular expressions negative lookahead

I'm doing some regular expression gymnastics. I set myself the task of trying to search for C# code where there is a usage of the as-operator not followed by a null-check within a reasonable amount of ...
5
votes
3answers
564 views

using regex to skip ahead all characters until a specific sequence of letters is found using negative lookahead

I'm alright with basic regular expressions, but I get a bit lost around pos/neg look aheads/behinds. I'm trying to pull the id # from this: [keyword stuff=otherstuff id=123 morestuff=stuff] There ...
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 ...
3
votes
4answers
93 views

Using Regex to Search for HTML links near keywords

If I'm looking for the keyword "sales" and I want to get the nearest "http://www.somewebsite.com" even if there is multiple links in the file. I want the nearest link not the first link. This means ...
3
votes
3answers
243 views

Regex - Escape with Negative Lookahead

I have the following JSON-encoded string: $json = '"|\t|\n|\\\u0027|\\\u0022|"'; What is the most efficient way to escape all the (already) escaped chars / codepoints except \\\u0022 or \\\u0027? I ...
3
votes
2answers
153 views

Regex negative lookahead

I need to modify this regex href=\"(.*)\" which matches this... href="./pothole_locator_map.aspx?lang=en-gb&lat=53.153977&lng=-3.533306" To NOT match this... ...
3
votes
2answers
6k views

Regular expression negative lookahead

In my home directory I have a folder drupal-6.14 that contains the Drupal platform. From this directory I use the following command: find drupal-6.14 -type f -iname '*' | grep -P ...
3
votes
6answers
702 views

How can I combine a positive and negative condition in a regex?

I fairly new to regular expressions and need some help. I need to filter some lines using regex in Perl. I am going to pass the regex to another function so it needs to be done in a single line. I ...
2
votes
4answers
762 views

RegEx matching with no single letter delimiter

Medicare Eligibility EDI Example Responses is what I'm trying to match. I have a string that looks like this: ...
1
vote
0answers
35 views

Google Analytics look ahead

I’m currently trying to filer internal use of a site in Google Analytics. There are 10 different IP ranges to match. As far as I know, you can’t add multiple “include” filters to one single profile as ...
1
vote
1answer
29 views

regex parser and custom escape chacter

I have a string that I'd like to pick out sub-strings from that start and end with a plus sign. example: text +name+ filler with /+ sign +b+ bold text +/b+ I'd like to pick out the +name+ +b+and ...
1
vote
2answers
263 views

Regex matching on to extract multi-line text regions (C#)

I'm looking to capture text regions in a large text block, created in the following format: ... [region:region-name] multi line text block [/region] ... [region:another-region-name] more multi-line ...
1
vote
3answers
127 views

Perl regex using negative look? can't seem to figure out how to do this properly

I'm trying to get this to work with perl's regex but can't seem to figure it out.. I want to grab any url that has ".website." in it, except ones that are like this (with "en" preceding ".website." ...
1
vote
3answers
90 views

Complex(?) regex: Is expression, but not another

(If you can make a better title, please do) Hi, I need to make sure a string matches the following regex: ^[0-9a-zA-Z]{1}[0-9a-zA-Z\.\-_]*$ (Starts with a letter or number, then any number of ...
1
vote
2answers
129 views

How to make negative lookahead work with end of line text

I have a regex like the following: .{0,1000}(?!(xa7|para(graf))$) using Java. I was expecting that it would cause the following text to fail: blaparagraf because paragraf is found at the end
1
vote
2answers
277 views

C# regex: negative lookahead fails with the single line option

I am trying to figure out why a regex with negative look ahead fails when the "single line" option is turned on. Example (simplified): <source>Test 1</source> <source>Test ...
1
vote
2answers
176 views

Java Regex not working - why?

match.matches() returns false. This is odd, because if I take this regex and test String to rubular.com, is shows two matches. What am I doing wrong? Pattern regex = ...
0
votes
2answers
59 views

Javascript regex: find a word NOT followed by space character

I need javascript regex that will match words that are NOT followed by space character and has @ before, like this: @bug - finds "@bug", because no space afer it @bug and me - finds nothing ...
0
votes
5answers
70 views

Javascript regular expression: match anything up until something (if there it exists)

Hi I am new to regular expression and this may be a very easy question (hopefully). I am trying to use one solution for 3 kind of string "45%", expected result: "45" "45", expected result: "45" "", ...
0
votes
2answers
167 views

Using zero-width assertions negative lookahead to match a string that does's contains string “abc”

Hi all: I'm trying using zero-width assertions negative lookahead to match a string that does's contains string "abc",and this is what I got: Pattern pattern = new ...
0
votes
3answers
205 views

Regex for matching a word without a ( after it

What regex would check a line for a word that is not followed by a ( character? I tried (\w+)(\?!\() but it doesn't work, and (\w+)[^\(] matches anything by treating the last letter as the [^\(] part. ...
0
votes
6answers
451 views

Javascript RegExp replace with negative lookahead

I am trying to replace some value in the query string of the current page using JS. Eg: from category=Old Value to category=New Value. To code looks like this: var sNewValue = 'New Value'; ...
0
votes
1answer
73 views

Specific Perl Regular Expression Needed

Have a perl script that needs to process all files of a certain type from a given directory. The files should be those that end in .jup, and SHOULDN'T contain the word 'TEMP_' in the filename. I.E. ...
0
votes
1answer
375 views

RegEx: h1 followed by h2 without p in between

I need a regular expression to find out whether or not a h1 tag is followed by a h2 tag, without any paragraph elements in between. I tried to use a negative lookahead but it doesn't work: ...
0
votes
2answers
362 views

negative look ahead to exclude html tags

I'm trying to come up with a validation expression to prevent users from entering html or javascript tags into a comment box on a web page. The following works fine for a single line of text: ...
0
votes
4answers
1k views

RegExp: want to find all links that do not end in “.html”

I'm a relative novice to regular expressions (although I've used them many times successfully). I want to find all links in a document that do not end in ".html" The regular expression I came up with ...
0
votes
2answers
223 views

Alternative regular expression to do this “\.(asmx(?!/js)|aspx|htm)”

Is there a way to rewrite this regex expression such that it does not include a lookahead for "/js"? Is this even something that I should worry about in terms of performance? It is being used to ...
0
votes
2answers
254 views

Replace Local Links, Keep External Links

I have an API call that essentially returns the HTML of a hosted wiki application page. I'm then doing some substr, str_replace and preg_replace kung-fu to format it as per my sites style guides. I ...