The regex-greedy tag has no wiki summary.
39
votes
9answers
26k 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 ...
38
votes
5answers
8k views
How can I make my match non greedy?
I have a big HTML file that has lots of markup that looks like this:
<p class="MsoNormal" style="margin: 0in 0in 0pt;">
<span style="font-size: small; font-family: Times New ...
16
votes
3answers
204 views
Matching text between delimiters: greedy or lazy regular expression?
For the common problem of matching text between delimiters (e.g. < and >), there's two common patterns:
using the greedy * or + quantifier in the form START [^END]* END, e.g. <[^>]*>, ...
13
votes
5answers
481 views
Why are regular expressions greedy by default?
It seems that this is a huge source of confusion for beginners writing regular expressions, can cause hidden performance problems, and it would seem that a typical use case would be non-greedy.
Is ...
12
votes
3answers
1k views
Greedy vs. Reluctant vs. Possessive Quantifiers
I found this excellent tutorial on regular expressions and while I intuitively undersand what "greedy", "reluctant" and "possessive" quantifiers do, there seems to be a serious hole in my ...
9
votes
3answers
476 views
Difference between .*? and .* for regex
I'm trying to split up a string into two parts using regex. The string is formatted as follows:
text to extract<number>
I've been using (.*?)< and <(.*?)> which work fine but after ...
8
votes
6answers
805 views
Regex: Is Lazy Worse?
I have always written regexes like this
<A HREF="([^"]*)" TARGET="_blank">([^<]*)</A>
but I just learned about this lazy thing and that I can write it like this
<A HREF="(.*?)" ...
6
votes
4answers
239 views
Is it better to use a non-greedy qualifier or a lookahead?
I have a possibly large block of text to search for instances of [[...]], where the ... can be anything, including other brackets (though they cannot be nested; the first instance of ]] after [[ ends ...
6
votes
3answers
258 views
Regex is behaving lazy, should be greedy
I thought that by default my Regex would exhibit the greedy behavior that I want, but it is not in the following code:
Regex keywords = new Regex(@"in|int|into|internal|interface");
var targets = ...
6
votes
5answers
899 views
what does lazy and greedy means in regexp?
could someone explain these 2 terms in a understandable way?
5
votes
2answers
3k views
Notepad++ non-greedy regular expressions
Does Notepad++ support non-greedy regular expressions?
For example for text:
abcxadc
I want to get parts using pattern:
a.+c
And now I get whole string instead of 2 parts. I tried to use the ...
4
votes
4answers
295 views
Regex: Match brackets both greedy and non greedy
I'm using python regular expression module, re .
I need to match anything inside '(' ')' on this two phrases, but "not so greedy". Like this:
show the (name) of the (person)
calc the sqrt of (+ (* ...
4
votes
2answers
4k views
Non greedy grep
I want to grep the shortest match and the pattern should be something like:
<car ... model=BMW ...>
...
...
...
</car>
... means any character and the input is multiple lines.
4
votes
4answers
443 views
Regular expression greedy match not working as expected
I have a very basic regular expression that I just can't figure out why it's not working so the question is two parts. Why does my current version not work and what is the correct expression.
Rules ...
4
votes
6answers
1k views
How can I fix my regex to not match too much with a greedy quantifier?
I have the following line:
"14:48 say;0ed673079715c343281355c2a1fde843;2;laka;hello ;)"
I parse this by using a simple regexp:
if($line =~ /(\d+:\d+)\ssay;(.*);(.*);(.*);(.*)/) {
my($ts, ...
3
votes
4answers
86 views
Can't get perl regex to be non-greedy
My regex matches the last set of alpha characters in the line, regardless of what I do. I want it to match only the first occurence. I have tried using the non-greedy operator but it stubbornly ...
3
votes
3answers
89 views
Question marks in regular expressions
I'm reading the regular expressions reference and I'm thinking about ? and ?? characters. Could you explain me with some examples their usefulness? I don't understand them enough.
thank you
3
votes
4answers
116 views
Finding all matches with a regular expression - greedy and non greedy!
Take the following string: "Marketing and Cricket on the Internet".
I would like to find all the possible matches for "Ma" -any text- "et" using a regex. So..
Market
Marketing and Cricket
Marketing ...
3
votes
3answers
72 views
How to get this regex working?
i have a small problem, i want to find in <tr><td>3</td><td>foo</td><td>2</td> the foo, i use: $<tr><td>\d</td><td>(.*)</td>$ to ...
3
votes
1answer
447 views
Non greedy regex match, JavaScript and ASP
I need to do a non greedy match and hope someone can help me. I have the following, and I am using JavaScript and ASP
match(/\href=".*?\/pdf\/.*?\.pdf/)
The above match, matches the first start of ...
3
votes
6answers
2k views
Python non-greedy regexes
How do I make a python regex like "(.*)" such that, given "a (b) c (d) e" python matches "b" instead of "b) c (d"?
I know that I can use "[^)]" instead of ".", but I'm looking for a more general ...
3
votes
5answers
2k views
Why does my non-greedy Perl regex match nothing?
I thought I understood Perl RE to a reasonable extent, but this is puzzling me:
#!/usr/bin/perl
use strict;
use warnings;
my $test = "'some random string'";
if($test =~ /\'?(.*?)\'?/) {
...
3
votes
6answers
655 views
Lazy, Greedy, or What? Looking for a definitive Regex reference
Recently, somewhere on the web*, I found a reference for regular expressions which described a "third way" of greediness, different both
from greedy (.*) and lazy (.*?) matching.
I've now tried ...
3
votes
5answers
2k views
Regular Expression nongreedy is greedy
I have the following text
tooooooooooooon
According to this book I'm reading, when the ? follows after any quantifier, it becomes non greedy.
My regex to*?n is still returning tooooooooooooon.
It ...
2
votes
3answers
50 views
Strange behavior in regexes
There was a question about regex and trying to answer I found another strange things.
String x = "X";
System.out.println(x.replaceAll("X*", "Y"));
This prints YY. why??
String x = "X";
...
2
votes
3answers
58 views
Java Regexp Groups
I need a expression to extract some alternatives. The input is:
asd11sdf33sdf55sdfg77sdf
I need the 11 33 and 55 but not 77.
I tried first:
.*(((11)|(33)|(55)).*)+.*
So I got only 55. But with ...
2
votes
2answers
147 views
Python non-greedy regex to clean xml
I have an 'xml file' file that has some unwanted characters in it
<data>
<tag>blar </tag><tagTwo> bo </tagTwo>
some extra
characters not enclosed that I want to ...
2
votes
2answers
182 views
Need fresh eyes for Java regular expression, which is too greedy
I have a string of the form:
canonical_class_name[key1="value1",key2="value2",key3="value3",...]
The purpose is to capture the canonical_class_name in a group and then alternating key=value ...
2
votes
4answers
298 views
perl non-greedy problem
I am having a problem with a non-greedy regular expression. I've seen that there are questions regarding non-greedy regex, but they don't answer to my problem.
Problem: I am trying to match the href ...
2
votes
2answers
317 views
Python re.sub use non-greedy mode (.*?) with end of string ($) it comes greedy!
Code:
str = '<br><br />A<br />B'
print(re.sub(r'<br.*?>\w$', '', str))
It is expected to return <br><br />A, but it returns an empty string ''!
Any suggestion?
2
votes
3answers
154 views
Greedy Regex Matching
I'm trying to match a string that looks something like this:
<$Fexample text in here>>
with this expression:
<\$F(.+?)>{2}
However, there are some cases where my backreferenced ...
2
votes
5answers
135 views
I don't understand a regexp
I'm following along a tutorial (Ruby) that uses a regex to remove all html tags from a string:
product.description.gsub(/<.*?>/,'').
I don't know how to interpret the ?. Does it mean: "at ...
2
votes
2answers
199 views
Ignoring an optional suffix with a greedy regex
I'm performing regex matching in .NET against strings that look like this:
1;#Lists/General Discussion/Waffles Win
2;#Lists/General Discussion/Waffles Win/2_.000
3;#Lists/General Discussion/Waffles ...
2
votes
4answers
237 views
Non greedy LookAhead
I have strings like follows:
val:key
I can capture 'val' with /^\w*/.
How can I now get 'key' without the ':' sign?
Thanks
2
votes
3answers
10k views
Need regexp to find substring between two tokens
I suspect this has already been answered somewhere, but I can't find it, so...
I need to extract a string from between two tokens in a larger string, in which the second token will probably appear ...
2
votes
6answers
714 views
Regex greedy issue
I'm sure this one is easy but I've tried a ton of variations and still cant match what I need. The thing is being too greedy and I cant get it to stop being greedy.
Given the text:
...
1
vote
1answer
103 views
Regex doesn't match, greediness
I try to match two parts in a string with a regex in PHP. There is a problem with the greediness, I think. I would like the first regex (see comment) to give me the first two captures, as the second ...
1
vote
1answer
93 views
Need a modified behavior for non-greedy grep
I am attempting to clean out a ton of spam that was injected into a client's blog. One of the issues is that the hack that originally did the injection did so in a way that it actually wound up with ...
1
vote
2answers
78 views
How do I extract with non greedy across multiple lines in java regular expressions?
If I have a bunch of data across multiple lines, how do I make it non greedy? What I have is greedy.
example data
</TD>
<TD CLASS='statusEven'><TABLE BORDER=0 WIDTH='100%' ...
1
vote
1answer
101 views
The last string don't match the regex right
I need som regex help. I have this code that i want to match.
var i1 = "<ul> {{#items}}<li>{{.}}</li>{{/items}} </ul>";
var i2 = "<ul> ...
1
vote
2answers
90 views
alternative greedy match
I want to make a greedy match to an alternative of either zero to 'm' consecutive occurences of 'a' or zero to 'n' consecutive occurences of 'b'. If I do
/a{,m}|b{,n}/
it will not work because when ...
1
vote
2answers
161 views
preg_match_all - greedy part of regex, but maximise number of matches
I have the following html to parse:
<h1 class="x">test</h1>
<p>some text <img src="x" /></p>
<h1 class="x1">test2</h1>
<p>some text </p>
<h1 ...
1
vote
3answers
1k views
Greedy, Non-Greedy, All-Greedy Matching in C# Regex
How can I get all the matches in the following example:
// Only "abcd" is matched
MatchCollection greedyMatches = Regex.Matches("abcd", @"ab.*");
// Only "ab" is matched
MatchCollection lazyMatches ...
1
vote
1answer
113 views
In regex is it called lazy or non-greedy?
I originally heard it as nongreedy. Then on references 'on the web' i saw it called as lazy. Which is it?
1
vote
7answers
166 views
Lazy regex doesn't work as expected C#
I have the following regex: a?\W*?b
and I have a string ,.! ,b
When searching for a match I get ,.! ,b, but not just b as I expect. Why is that? How to modify the regex to get what I ...
1
vote
1answer
88 views
Regex not being greedy enough
I've got the following regex that was working perfectly until a new situation arose
^.*[?&]U(?:RL)?=(?<URL>.*)$
Basically, it's used against URLs, to grab EVERYTHING after the U=, or URL= ...
1
vote
3answers
296 views
how to make Regular expression into non-greedy?
I have made a Work with JQ. My Work is a string width a special character block begin and end of string. I want take the text in that special characters, i used regular expression for find in string, ...
1
vote
1answer
908 views
PHP preg_replace non-greedy trouble
I've been using the following site to test a PHP regex so I don't have to constantly upload:
http://www.spaweditor.com/scripts/regex/index.php
I'm using the following regex:
/(.*?)\.{3}/
on the ...
1
vote
4answers
337 views
Why is it very slow for a Regex to finish a XML file of 3000 lines?
I noticed that it is very slow for a Regex to finish a XML file with 3000 lines [1]:
...
1
vote
6answers
546 views
A Question of Greedy vs. Negated Character Classes in Regex
I have a very large file that looks like this (see below). I have two basic choices of regex to use on it (I know there may be others but I'm really trying to compare Greedy and Negated Char Class) ...