Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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="(.*?)" ...
4
votes
2answers
159 views

Writing better regex expression for not using lazy repeat quantifier

I have a regular expression: (<select([^>]*>))(.*?)(</select\s*>) Since it uses lazy repeat quantifier, for longer strings(having options more than 500) it backtracks for more than ...
0
votes
1answer
46 views

I need help getting Regex expression correct

I am trying to get a regular expression to find multiple entries of my pattern on a line. Note: I've been using Regex for about an hour... =/ For example: <a href="G2532" id="1">back</a> ...
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
60 views

Confused about a regex

I want to match expressions that begin with "${" and end with "}" in the expression ${foo} and ${bar}. The regex .*\$\{.+\}.* matches the entire expression, of course. My understanding was that ...