Tagged Questions
The negative-lookbehind tag has no wiki summary.
12
votes
4answers
4k views
Javascript: negative lookbehind equivalent?
Is there a way to achieve the equivalent of a negative lookbehind in javascript regular expressions? I need to match a string that does not start with a specific set of characters.
It seems I am ...
11
votes
2answers
491 views
What's the easiest way to get an equivalent to GNU grep that supports negative lookbehinds?
I'm trying to grep through a bunch of files in nested subdirectories to look for regular expression matches; my regex requires negative lookbehind.
Perl has negative lookbehind, but as far as I can ...
5
votes
3answers
284 views
negative lookbehind and greedy quantifiers in php
I'm using a regex to find any URLs and link them accordingly. However, I do not want to linkify any URLs that are already linked so I'm using lookbehind to see if the URL has an href before it.
This ...
5
votes
5answers
1k views
How can regex ignore escaped-quotes when matching strings?
I'm trying to write a regex that will match everything BUT an apostrophe that has not been escaped. Consider the following:
<?php $s = 'Hi everyone, we\'re ready now.'; ?>
My goal is to ...
3
votes
1answer
150 views
Regex negative lookbehind in Ruby doesn't seem to work
Making an argument parser. I want to split a string into an array where the delimiter is ", " except when preceded by "|". That means string
"foo, ba|, r, arg"
should result in
`["foo", "ba|, r", ...
3
votes
5answers
78 views
Could you explain why this regex is not working?
>>> d = "Batman,Superman"
>>> m = re.search("(?<!Bat)\w+",d)
>>> m.group(0)
'Batman'
Why isn't group(0) matching Superman? This lookaround tutorial says:
(?<!a)b ...
3
votes
2answers
152 views
Regex: remove scheme unless it's http(s). (capture negative lookbehind pattern)
I'm having a regex blackout here. How do I capture a negative lookbehind pattern again?
I'm trying to remove the scheme (including ://) of a uri unless it is http/https. I'm half way there (or I ...
3
votes
3answers
192 views
Making Regular Expression more efficient
I'm attempting to determine the end of an English sentence (only approximately), by looking for "!", "?" or ".", but in the case of "." only when not preceeded by common abbreviations such as Mr. or ...
3
votes
3answers
619 views
Regex negative look-behind in hgignore file
I'm looking for a way to modify my .hgignore file to ignore all "Properties/AssemblyInfo.cs" files except those in either the "Test/" or the "Tests/" subfolders.
I tried using the negative ...
2
votes
2answers
76 views
Regex: Difference betwen negative lookbehind and negation
From regular-expressions.info:
\b\w+(?<!s)\b. This is definitely not the same as \b\w+[^s]\b. When applied to Jon's, the former will match Jon and the latter Jon' (including the apostrophe). I ...
2
votes
1answer
162 views
Stop matching when meeting a sequence of chars: fixing a lookbehind
I have the following regexp:
(?P<question>.+(?<!\[\[))
It is designed to match hello world! in the string hello world! [[A string typically used in programming examples]]
Yet I just ...
2
votes
8answers
653 views
How do I match part of a string only if it is not preceded by certain characters?
I've created the following regex pattern in an attempt to match a string 6 characters in length ending in either "PRI" or "SEC", unless the string = "SIGSEC". For example, I want to match ABCPRI, ...
1
vote
3answers
71 views
Problem with negative lookbehind regex capturing
I try to match email addresses but only when they are not preceeded with "mailto:". I try this regular expression:
...
1
vote
2answers
135 views
Equivalent to (.*) in negative look behind assertion Regex Python
I am writing a negative lookbehind assertion expression in Python which performs the following function to parse a plain text file:
Does not match anything followed after http://********** ; but ...
1
vote
3answers
200 views
Need variable width negative lookbehind replacement
I have looked at many questions here (and many more websites) and some provided hints but none gave me a definitive answer. I know regular expressions but I am far from being a guru. This particular ...
1
vote
4answers
778 views
Help with PHP Regular Expressions using a Negative Look Behind
I'm trying to write a simple function to close missing HTML tags using PHP preg_replace.
I thought it would be relatively straight-forward, but for some reason it hasn't been.
What I'm basically ...
1
vote
6answers
994 views
A regex problem I can't figure out (negative lookbehind)
how do i do this with regex?
i want to match this string: -myString
but i don't want to match the -myString in this string: --myString
myString is of course anything.
is it even possible?
EDIT:
...
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
2answers
58 views
Regex: selecting end of line character of lines NOT containing 3 semicolons
I'm using the Regex enabled Search&Replace function in EditpadLite. My document looks like this
20-10-2011;foo1;foo2;foo3;foo4;foo5
19-10-2011;foo1;foo2;foo3;foo4;
18-10-2011;foo1;foo2;foo3;foo4
...
0
votes
1answer
94 views
How to use a negative lookbehind
Basically, I am changing any and all hexadecimal values with a blue hue to its red hue counterpart in a given stylesheet (i.e. #00f is changed to #ff0000 (my function outputs six character hexadecimal ...
0
votes
1answer
796 views
Java RegEx API “Look-behind group does not have an obvious maximum length near index …”
I'm on to some SQL where clause parsing and designed a working RegEx to find a column outside string literals using "Rad Software Regular Expression Desginer" which is using the .NET API. To make sure ...
0
votes
1answer
212 views
strange behavior in vim with negative look-behind
So, I am doing this search in vim:
/\(\(unum\)\|\(player\)=\)\@<!\"1\"
and as expected it does not match lines that have:
player="1"
but matches lines that have:
unum="1"
what am i doing ...
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
1answer
158 views
negative lookbefore for a blackslash in ruby 1.9
I want to match every '[' or ']' that's not preceded by a backslash in ruby 1.9
I tried:
/?<!\134[\[\]]/
and
/?<!\\\\[\[\]]/
but I get a 'target of repeat operator not specified'