Tagged Questions
The non-greedy tag has no wiki summary.
8
votes
1answer
195 views
non-greedy matching in Scala RegexParsers
Suppose I'm writing a rudimentary SQL parser in Scala. I have the following:
class Arith extends RegexParsers {
def selectstatement: Parser[Any] = selectclause ~ fromclause
def selectclause: ...
8
votes
1answer
132 views
Can regexes containing nongreedy (reluctant) quantifiers be rewritten to use only greedy ones?
Suppose I have a regex language supporting literals, positive and negative character classes, ordered alternation, and the greedy quantifiers ?, *, and +. (This is essentially a subset of PCRE without ...
8
votes
6answers
798 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="(.*?)" ...
5
votes
3answers
255 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 = ...
3
votes
4answers
82 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
6answers
195 views
Why is the minimal (non-greedy) match affected by the end of string character '$'?
EDIT: remove original example because it provoked ancillary answers. also fixed the title.
The question is why the presence of the "$" in the regular expression effects the greedyness of the ...
2
votes
2answers
130 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
4answers
276 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
5answers
260 views
Why is this regex being greedy?
I am trying to extract all links that have /thumb/ in it within ""'s. Actually i only need to use the images src. I dont know if images will end with jpg or if there will be case sensitivity problems, ...
2
votes
4answers
257 views
What is an efficient way to go beyond a greedy algorithm
The domain of this question is scheduling operations on constrained hardware. The resolution of the result is the number of clock cycles the schedule fits within. The search space grows very rapidly ...
2
votes
3answers
3k views
Regular expression to find and replace the content of HTML Comment Tags
I have a CMS that uses a syntax based on HTML comments to let the user insert flash video players, slideshows, and other 'hard' code that the user could not easily write.
The syntax for one FLV ...
2
votes
2answers
1k views
Is there a way to use ungreedy matching in JavaScript for regular expressions?
I wonder if there is a way to use ungreedy matching in JavaScript? I tried the U modifer, but it doesn't seem to work.
I want to write a small BBCode parser in JavaScript, but without ungreedy ...
1
vote
1answer
81 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
7answers
80 views
De-greedifying a regular expression in python
I'm trying to write a regular expression that will convert a full path filename to a short filename for a given filetype, minus the file extension.
For example, I'm trying to get just the name of the ...
1
vote
1answer
316 views
Sed non greedy match: matching first xml nodes
Follow up to this question
$test = "sed -n '1h;1!H;\${;g;s/<item=\"".$name.".*</\item>/".trim(xml)."/g;p;}' ".$file;
exec($test,$cmdresult);
This command executes to find all xml nodes ...
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
2answers
389 views
Greedy versus Non-Greedy matching in Python re
Please help me to discover whether this is a bug in Python (2.6.5), in my competence at writing regexes, or in my understanding of pattern matching.
(I accept that a possible answer is "Upgrade your ...
1
vote
3answers
1k views
How to do multiline search and replace with a script?
I'm trying to replace every multiline import inside a Python source file.. So, the source goes like
from XXX import (
AAA,
BBB,
)
from YYY import (
CCC,
DDD,
EEE,
...
)
...other ...
0
votes
2answers
54 views
Non-greedy Regular Expression in Java
I have next code:
public static void createTokens(){
String test = "test is a word word word word big small";
Matcher mtch = Pattern.compile("test is a (\\s*.+?\\s*) word ...
0
votes
3answers
156 views
sed for removing trailing zeroes - regex - nongreedy
I have a file which has few lines as below
ABCD|100.19000|90.100|1000.000010|SOMETHING
BCD|10.100|90.1|100.019900|SOMETHING
Now, after applying sed on this, I would like the output to be as below ...
0
votes
2answers
79 views
How can I access blocks of text as an attribute that are matched using a greedy=false option in ANTLR?
I have a rule in my ANTLR grammar like this:
COMMENT : '/*' (options {greedy=false;} : . )* '*/' ;
This rule simply matches c-style comments, so it will accept any pair of /* and */ with any ...
0
votes
4answers
109 views
PHP preg_replace to turn **xyz** to <b>xyz</b>
I decided to, for fun, make something similar to markdown. With my small experiences with Regular Expressions in the past, I know how extremely powerful they are, so they will be what I need.
So, if ...
0
votes
3answers
3k views
Sed non greedy curly braces match
I have a string in a file a.txt
{moslate}alho{/moslate}otra{moslate}a{/moslate}
a need to get the string otra using sed.
With this regex
sed 's|{moslate}.*{/moslate}||g' a.txt
a get no output at ...
0
votes
1answer
703 views
Xcode lazy regular expression
I'm trying to replace something like this:
NSSomeFunction(@"some var", @"another one")
With:
NSSomeOhterFunction(@"some var")
In Xcode. So these are source files...
I bet the regular expression ...
0
votes
1answer
187 views
Regex: match SQL PRINT blocks with quoted text in it
I have the following text I am trying match using regular expressions:
PRINT CONVERT(NVARCHAR,
CURRENT_TIMESTAMP, 111) + ' ' +
CONVERT(NVARCHAR, CURRENT_TIMESTAMP,
108)
+ ' ...
0
votes
4answers
625 views
Java Regexp: UNGREEDY flag
I'd like to port a generic text processing tool, Texy!, from PHP to Java.
This tool does ungreedy matching everywhere, using preg_match_all("/.../U").
So I am looking for a library, which has some ...
0
votes
3answers
365 views
How to non-greedy multiple lookbehind matches
Source: <prefix><content1><suffix1><prefix><content2><suffix2>
Engine: PCRE
RegEx1: (?<=<prefix>)(.*)(?=<suffix1>)
RegEx2: ...
-1
votes
3answers
1k views
php non-greedy regex problem
demo:
$str = 'bcs >Hello >If see below!';
$repstr = preg_replace('/>[A-Z0-9].*?see below[^,\.<]*/','',$str);
echo $repstr;
What I want this tiny programme to output is "bcs >Hello ",but ...
-6
votes
2answers
769 views
how to fix this regular expression non-greedy problem?
preg_match('/(.*?)see below[^,\.<]*/s',$xml,$match);
echo $match[0];
the ouput is,which I think the non-greedy matching is not working:
<?xml version="1.0" encoding="utf-8"?>
...