Tagged Questions
The lookahead tag has no wiki summary.
51
votes
4answers
1k views
Does lookaround affect which languages can be matched by regular expressions?
There are some features in modern regex engines which allow you to match languages that couldn't be matched without that feature. For example the following regex using back references matches the ...
45
votes
8answers
33k views
Regular Expressions: Is there an AND operator?
Obviously, you can use |(pipe?), to represent OR, but can you match and as well?
Specifically, I'm wanting to match paragraphs of text that contain ALL of a certain phrase, but in no particular ...
14
votes
3answers
394 views
How does the regular expression ‘(?<=#)[^#]+(?=#)’ work?
I have the following regex in a C# program, and have difficulties understanding it:
(?<=#)[^#]+(?=#)
I'll break it down to what I think I understood:
(?<=#) a group, matching a hash. ...
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 "." ...
11
votes
7answers
644 views
Using lookahead with generators
I have implemented a generator-based scanner in Python that tokenizes a string into tuples of the form (token type, token value):
for token in scan("a(b)"):
print token
would print
("literal", ...
7
votes
3answers
8k views
Javascript won't split using regex
Since I started writing this question, I think I figured out the answers to every question I had, but I thought I'd post anyway, as it might be useful to others and more clarification might be ...
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 ...
4
votes
1answer
54 views
Regular Expression which matches fixed length chunk with variable length elements
I'm writing some regex to match lines which contain numeric elements padded with spaces, like -2.45. The regex for this is simple enough:
/(\s*-?\d+\.\d{2})/
However, I have the additional ...
4
votes
3answers
73 views
How do I use look-ahead in regex to match on no character?
I've got a set of regex's within a function that are working rather well for me, but I've encountered a new pattern where they fail. This function fails when there are no more characters in the ...
4
votes
1answer
184 views
Java regular expression with lookahead
is there a way to print out lookahead portion of a regex pattern in java?
String test = "hello world this is example";
Pattern p = Pattern.compile("\\w+\\s(?=\\w+)");
Matcher m = ...
4
votes
3answers
254 views
Regex ungreedy from the left side (i.e., narrowest match possible from both sides)
Let's say I'm trying to match /dog.*lab/ against this text:
"I have a dog. My dog is a black lab. He was created in a laboratory."
Greedily, it would match "dog. My dog is a black lab. He was ...
4
votes
4answers
164 views
Regular Expression Postive Lookahead substring
I am fairly new to regular expressions and the more and more I use them, the more I like them. I am working on a regular expression that must meet the following conditions:
Must start with an Alpha ...
4
votes
6answers
541 views
Replace all “\” characters which are *not* inside “<code>” tags
First things first: Neither this, this, this nor this answered my question. So I'll open a new one.
Please read
Okay okay. I know that regexes are not the way to parse general HTML. Please take note ...
3
votes
2answers
64 views
Regex without middle expression repetition (axb|cxd)
I am just continuously hitting a wall with this one, I cannot solve it. I am trying to get a regex that executes as:
(axb|cxd)
except without repeating x in the expression (as it is really long ...
3
votes
1answer
170 views
Using regex to match non-word characters BUT NOT smiley faces
I have a Java program which is supposed to remove all non-letter characters from a string, except when they are a smiley face such as =) or =] or :P
It's very easy to match the opposite with [a-zA-Z ...
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
700 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
5answers
71 views
Regexp matching a string - positive lookahead
Regexp: (?=(\d+))\w+\1
String: 456x56
Hi,
I am not getting the concept, how this regex matches "56x56" in the string "456x56".
The lookaround, (?=(\d+)), captures 456 and put into \1, for (\d+)
...
2
votes
1answer
61 views
Regex positive lookahead with backreference
I'm trying to build a very specific editor with syntax highlight.
I've made all the simple stuff with regular expressions wich was simple enough, but now I would like to add some advanced features ...
2
votes
4answers
143 views
Nested regex lookahead and lookbehind
I am having problems with the nested '+'/'-' lookahead/lookbehind in regex.
Let's say that I want to change the '*' in a string with '%' and let's say that '\' escapes the next character. (Turning a ...
2
votes
1answer
84 views
Lucene Tokenizer with LookAhead
can anyone point me in the right direction for implementing a Lucene Tokenizer with LookAhead?
I'm using a snowball stemmer and I want to be able to get phrases of city names and prevent them from ...
2
votes
2answers
46 views
Parsing cases that need much lookahead
Most parsing can be done by looking only at the next symbol (character for lexical analysis, token for parsing proper), and most of the remaining cases can be handled by looking at only one symbol ...
2
votes
2answers
263 views
Regex Negative Lookahead
I have a situation wherein I need to search through a VS project for any control that does not have a MaxLength property defined.
For example:
<asp:TextBox ID="txtName" runat="server" ...
2
votes
3answers
585 views
Regular Expression - Match all but first letter in each word in sentence
I've almost got the answer here, but I'm missing something and I hope someone here can help me out.
I need a regular expression that will match all but the first letter in each word in a sentence. ...
2
votes
1answer
240 views
Regex to match test<not ABC>test
I'm using Oracle regural expressions and I want to match some string, then something different to another string and then another string.
For instance, I want to match 'testZZZtest' and ...
2
votes
1answer
171 views
Efficiency of lookarounds in C# regular expressions. Should I avoid them if I can?
everyone! I'm quite new to regular expressions, but I like them, A LOT!
Call me nitpicky if you will, but I'd really like to know if I should avoid using lookaheads and lookbehinds if I have an ...
2
votes
2answers
135 views
Lazy Regex Match in .NET. What's wrong here?
In the following example I would like to retrieve the text between pMAINp and the first pMDSp. The regex has a look-behind and a look-ahead:
string contents = "pMAINp MAP B FlightTest Load pMDSp ...
2
votes
2answers
232 views
Why does a positive lookahead lead to captures in my Perl regex?
I can't get why this code work:
$seq = 'GAGAGAGA';
my $regexp = '(?=((G[UCGA][GA]A)|(U[GA]CG)|(CUUG)))'; # zero width match
while ($seq =~ /$regexp/g){ # globally
my $pos = pos($seq) + 1; # ...
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
2answers
60 views
Why aren't my nested lookarounds working correctly in my Perl substitution?
I have a Perl substitution which converts hyperlinks to lowercase:
's/(?<=<a href=")([^"]+)(?=")/\L$1/g'
I want the substitution to ignore any links which begin with a hash, for example I ...
1
vote
3answers
279 views
How to implement LOOP in a FORTH-like language interpreter written in C
I'm writing a simple stack-based language in C and was wondering how I should go about implementing a loop structure of some kind, and/or lookahead symbols. Since the code is a bit long for this page ...
1
vote
3answers
71 views
Learn about regular expressions?
In an answer to one of my questions, someone had posted:
// could replace it with an easier to work with delimiter
str.replace(/(;)(?![";"])/g, '|')
// or split it, but skip over results that are ...
1
vote
1answer
98 views
Two very close regexes with lookahead assertions in Python - why does re.split() behave differently?
I was trying to anser this question where the OP has the following string:
"path:bte00250 Alanine, aspartate and glutamate metabolism path:bte00330 Arginine and proline metabolism"
and wants to ...
1
vote
2answers
84 views
Why isn't this lookahead assertion working in Java?
I come from a Perl background and am used to doing something like the following to match leading digits in a string and perform an in-place increment by one:
my $string = '0_Beginning';
$string =~ ...
1
vote
4answers
224 views
Java RegEx: Split without losing token
I'm trying to write regex that will split a string when there is whitespace followed by a negative sign followed by non whitespace.
Example:
"x -y".split(regex)
returns: String[]{"x","-y"};
...
1
vote
1answer
107 views
VST lookahead and setInitialDelay()
I think I need to implement a lookahead system in my VST but have never done it before. I know setInitialDelay(foo) is placed in the constructor and then you buffer audio but I'm not sure were a read ...
1
vote
4answers
149 views
Weird Positive Lookahead behaviour in java.util.regex engine
I've text with many animals of certin kinds and some traps, and other text with no mean, e.g. "cat dog house 131 bird 1341 house trap cat cat cat dog trap house dog house trap".
I'm trying to build a ...
1
vote
4answers
291 views
Regex to find last token on a string
I was wondering if there is a way having this
var string = "foo::bar"
To get the last part of the string: "bar" using just regex.
I was trying to do look-aheads but couldn't master them enough to ...
1
vote
3answers
79 views
Browsers different interpretations of a regex with lookahead
I am running a split in javascript with /\s+(AND|OR)(?=\s+")\s+/ on
"email" IS NOT NULL AND "email" LIKE '%gmail.com' OR "email" = 'test@test.com'
Now, my understanding of regular expressions would ...
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
1answer
951 views
Change Password Control RegEx validating oddly in IE 7 only
I'm using the Asp.net change password control in my application and all seems to be find and dandy until a user tells me she has a problem meeting the strength requirements when changing her password. ...
1
vote
4answers
204 views
Naming convetion of regex,lookahead and lookbehind
Why is it counter intuitive?
/(?<!\d)\d{8}(?!\d)/,here (?<!\d) comes first,but called lookbehind,(?!\d) next,but called lookahead.All are counter intuitive.
What's the reason to name it this ...
1
vote
2answers
113 views
LookAhead Regex in .Net - unexpected result
I am a bit puzzled with my Regex results (and still trying to get my head around the syntax). I have been using http://regexpal.com/ to test out my expression, and its works as intended there, however ...
1
vote
3answers
231 views
InputStreamReader.markSupported is false
I need to “un-read” characters from an InputStreamReader. For that purpose I wanted to use mark and reset but markSupported returns false for the InputStreamReader class, since it doesn’t maintain an ...
1
vote
8answers
1k views
Regex that matches anything before a certain character?
I have to parse a bunch of stats from text, and they all are formatted as numbers.
For example, this paragraph:
A total of 81.8 percent of New York
City students in grades 3 to 8 are
meeting ...
0
votes
3answers
53 views
How to use regex lookahead to limit the total length of input string
I have this regular expression and want to add the rule which limit the total length is no more than 15 chars. I saw some lookahead examples but they're not quite clear. Can you help me to modify this ...
0
votes
3answers
59 views
regex to select between <anchor1> and <anchor2> while ignoring all text inside any <>
I have the following two types of text:
Type one:
<div class="meta-name">Corporate Officers</div>
<div class="meta-data"><table border="0" cellspacing="0" cellpadding="0" ...
0
votes
6answers
89 views
Character look ahead
How would I go about making a character look-ahead method in Java? I have a text file (let's say TextFile.txt) and I need it to first read in a single character, recognise it, if it's a special ...
0
votes
2answers
140 views
php preg_replace regex lookahead
Iam trying to replace Ampersands on my html sidewide using preg_replace, but the issue is that it breaks inline javascript && or javascript url like ?page=test&id=1
Now i have this code, ...
0
votes
3answers
127 views
Regex to match only innermost delimited sequence
I have a string that contains sequences delimited by multiple characters: << and >>. I need a regular expression to only give me the innermost sequences. I have tried lookaheads but they ...