The regex-greedy tag has no wiki summary.
0
votes
3answers
24 views
match the sequence between a word and the last occurding space
I am looking to extract specific set of characters matching after a particular word till the last space that occurs in the sequence.
Example:
FAILED on portal HTTP (10.1.1.1)
FAILED on portal ...
1
vote
1answer
33 views
+500
Why non-greedy quantifier sometimes doesn't work in Oracle regex?
IMO, this query should return A=1,B=2,
SELECT regexp_substr('A=1,B=2,C=3,', '.*B=.*?,') as A_and_B FROM dual
But it returns whole string A=1,B=2,C=3, instead. Why?
UPD: Oracle 10.2+ required ...
0
votes
3answers
48 views
preg_replace is not replacing the content of string
I have a string like this <script>||| [CA]this is my content<br> ABC**&&PPPP[/CA]Just Some Random Text<span>[CA]this is my content2<br> 123**''&&PPPP[/CA] i ...
0
votes
2answers
23 views
Regex to match as many times as possible, but within constraints
Here's my string:
"ab1 ab-1 f-12 g-12 ffff-123 456"
I'd like to pick out things that have:
Up to 2 letters
An optional hyphen
Up to 2 numbers
Valid: ab1, ab-1, f-12, g-12
Not Valid: ffff-123, 456
...
2
votes
2answers
43 views
Java regex groups with .* vs normal regex
I am trying to use regex to grab 2 pieces of one full string. I've got the regex working fine on http://gskinner.com/RegExr/
Here is a sample string:
Regex is fun when it works 99
Here is my Regex
...
0
votes
2answers
49 views
Making + non-greedy?
Imagine I have the String
abcD
and I want to extract abc out of it. I thought of using
^(.+)D$
however then in matching group1, not only abc, but abcD is included - how to make the .+ less ...
0
votes
1answer
53 views
.Net Regex split with optional items and greediness
Here is a test sample of data I'm trying to parse:
Content1
***
Content2
***
Content3
Content3
***
Content4
***
Content5
***
***
Content6
***
***
***
Content7
In short, data entries separated by ...
1
vote
3answers
94 views
R: gsub and capture
I am trying to extract the contents between square brackets from a string:
eq <- "(5) h[m] + nadh[m] + q10[m] --> (4) h[c] + nad[m] + q10h2[m]"
I can filter them out:
gsub("\\[.+?\\]","" ...
1
vote
2answers
71 views
Php regular expressions work different on different servers
I am using regex to get URL's from a webpage.
On localhost (PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 24 2012 17:45:44)) code:
$file = ...
3
votes
2answers
48 views
Not in regular expression
I am trying to write a regex pattern for finding a spesific string which is not inside of quotation marks. for example;
where value = '~foo'; //no match
where value = ~foo; //match
I may seek ...
1
vote
2answers
96 views
Make a non-greedy RegEx in backward direction to behave the same like in forward direction
This pattern:
/a+?b+?/
Against the following string:
aaaaaabbbbbb
Matches:
aaaaaab
We see that the non-greedy behaves different in backward/left direction (takes all) and forward/right ...
0
votes
4answers
147 views
php regex non greedy
I need to get the value inside some tags in a comment php file like this
php code
/* this is a comment
!-
<titulo>titulo3</titulo>
<funcion>
<descripcion>esta es la ...
0
votes
2answers
51 views
Regular expression a little too greedy
I am trying to capture a small subset of a document with this RegEx:
preg_match('/href="(.+?)".+?>Keyword/s', $a, $b);
However, instead of just grabbing the href= immediately before the Keyword, ...
1
vote
5answers
62 views
My regular expression doesn't know when to stop
I'm trying to match this (the name in particular):
<tr>
<th class="name">Name:</th>
<td>John Smith</td>
</tr>
Like this:
preg_match('/<th ...
1
vote
3answers
225 views
How to Capture only First Occurrence in Perl Regex
I'm using Perl for the first time (with TextWrangler), and need help with regex!
I have a large string of species names, DNA, and other text. I want to extract the following:
Homo sapiens
Pongo ...
1
vote
3answers
48 views
Logic behind lazy regex using '?'?
here is my question:
For example if your pattern is:
abc?
Then this will match:
ab
abc
but not abd
as c? means: if there is a c, match, if not, no worries..
So say you have something like this:
...
0
votes
2answers
66 views
Write regex for a text with several \n
This regex <li>.*end does not work for the following text, what I'm doing wrong?
text
<li>asdsadasd
adssadasdasdasdas
asdasdasdasdasdad
adsasdasdasdasd
dasdadadsadadasdasdasdasda
end
...
0
votes
1answer
33 views
ReplaceRegex Function not doing the job
I want to edit this line of input and add some more values to the Product_A Key.
input="CSDT_FLAG_PRODUCT_FF_FWUIDS=Product_A:45223423;Product_PD:4;Product_CD:345345,22454;Product_F:3423"
I have ...
-1
votes
1answer
39 views
How to test if a regular expression engine is greedy by default?
I'm sleepy, and not thinking clearly, how do I do that?
3
votes
1answer
64 views
Regex {} parsing
Hello I have a problem with parsing this text
{
{
{
{[system1];1;1;0.612509325};
{[system2];1;1;0.977659115};
{[system3];1;1;36.97828732969};
...
0
votes
1answer
91 views
Postgres Regex Greed Control
To change tag pairs around text, this Postgres SELECT expression works for me:
select regexp_replace('The corpse of the huge <i>fin whale</i> created a spectacle on <span ...
1
vote
1answer
70 views
QRegExp: individual quantifiers can't be non-greedy, but what good alternatives then?
I'm trying to write code that appends ending _my_ending to the filename, and does not change file extension.
Examples of what I need to get:
"test.bmp" -> "test_my_ending.bmp"
...
0
votes
1answer
100 views
how to stop regex at first occurence(make it on greedy ) across phrase
I am trying to build a regex that stops at the first occurrence. I know I can make it non-greedy by putting ?.
Consider a string:
"This is sample text located at first line and located at second ...
1
vote
1answer
94 views
Dreamweaver Regex Find and Replace with Regular Expression
I have many instances throughout my site where I have inadvertently included the following code:
if (isset(htmlspecialchars($_GET['u'])))
I need to do a widespread find/replace to turn that code ...
0
votes
5answers
201 views
Regex required for space delimited strings java
I have an operation that deals with many space delimited strings, I am looking for a regex for the String matches function which will trigger pass if first two strings before first space starts with ...
0
votes
1answer
64 views
PHP regular expression with preg_match_all - why doesn't it match?
I'm looking at a regular expression to match any characters. I know that the '.' is a placeholder except for newline. Given this code below:
$fruits = "One\nTwo\nThree";
preg_match_all('/^(.*)$/', ...
0
votes
1answer
86 views
Regular Expression to exclude specific substring but keeping all the rest including hyphens [closed]
I'm looking for a regex able to select all words into a list excluding all the words containing a specific substring.
Example wordlist:
call, calls, call-me, co-branded, co-operated, -cop, cop, ...
1
vote
3answers
157 views
Matching optional groups with lookahead in JavaScript regex
I'm trying to solve a string matching problem with regexes. I need to match URLs of this form:
http://soundcloud.com/okapi23/dont-turn-your-back/
And I need to "reject" URL of this form:
...
1
vote
2answers
150 views
why is this single-line regex not returning ALL matches?
I just asked a similar question to this one, and there was an excellent and accurate answer, but it turns out I now have a brand new problem. It turns out I have a single line of relevant input. I'm ...
0
votes
1answer
136 views
why is this regular expression returning only one match?
Here is my input:
xxx999xxx888xxx777xxx666yyy
xxx222xxx333xxx444xxx555yyy
This is the expression:
xxx.*xxx(?<matchString>(.(?!xxx.*xxx))*?)xxx.*yyy
It's returning 444.
I'd like ...
-3
votes
1answer
85 views
Replacing a dynamic url with text?
I need to replace the below url (including img tags) with text. I am not very good with regex...
However, as the date will change its not only about copy and replace infortunately.
<img ...
3
votes
3answers
90 views
How do I Java regex a DIV from with a page
My problem is I want to delete a <div> xxx </div> from within an arbitrary page of HTML.
So given a page ...
<div> foo <div> bar <div> xxx </div> foo ...
6
votes
1answer
120 views
Multiline python regex
I have a file structured like this :
A: some text
B: more text
even more text
on several lines
A: and we start again
B: more text
more
multiline text
I'm trying to find the regex that will split ...
3
votes
2answers
224 views
How to match words separated with single space vs words separated with multiple spaces
I need to separate the key and values from the text that looks like below
Student ID: 0
Department ID = 18432
Name ...
1
vote
4answers
80 views
Regexp with global flag only matching first match
Why does:
/(\[#([0-9]{8})\])/g.exec("[#12345678] [#87654321] [#56233001] [#36381069] [#23416459] [#56435355]")
return
["[#12345678]", "[#12345678]", "12345678"]
I want it to match all those ...
1
vote
1answer
102 views
parsing a filter condition with regular expressions
I'm trying to parse a simple filter condition using regular expressions
The filter should have the following syntax:
field=value
field:value
field!=value
field<>value
etc... (you get the idea)
...
-2
votes
1answer
61 views
Regex Issues conflicts
Im not receiving any answers from stackover. is anything went wrong with me..?
Please anyone help me in finding below Regex Problem.
If there is Input text starting with "(ix) (a) This is Sample ...
2
votes
1answer
77 views
ruby regex to find nested matches
My regex is
/a .*programming .*test .*this/i
and test string is
This is a test This is a programming test This is a programming test in any language
The match I'm getting is
a test This is a ...
0
votes
1answer
71 views
Regex atomic grouping not greedy enough
I'm trying to build a regex that matches escaped strings like @"hello""world". So far I have (ignore whitespace):
@(?=")" #at sign if followed by double quote then double quote
(?> ...
0
votes
2answers
194 views
regular expression greedy on left side only (.net)
I am trying to capture matches between two strings.
For example, I am looking for all text that appears between Q and XYZ, using the "soonest" match (not continuing to expand outwards). This string:
...
2
votes
2answers
320 views
regex match non greedy
I need help about regular expression matching with non-greedy option.
Match pattern is:
<img\s.*>
Text to match is:
<html>
<img src="test">
abc
<img
src="a" src='a' a=b>
...
0
votes
1answer
384 views
Regex match first instance only
For some reason I am not able to use lazy matching.
Here is the text -
806 ? Ss 0:00 /usr/sbin/apache2 -k start
823 ? S 0:00 \_ /usr/sbin/apache2 -k start
824 ? ...
0
votes
3answers
247 views
Regex to parse file paths
I have this text:
Unexpected error creating debug information file
'c:\Users\Path1\Path2\Strategies\Path3\CustomStrategy.PDB' --
'c:\Users\Path1\Path2\Strategies\Path3\CustomStrategy.pdb: The ...
0
votes
2answers
785 views
substring operation using antcontib's properyregex task
I am trying to do a substring operation using antcontrib's propertyregex. Here is my original string:
COMPONENT:MYBuild:cat:cat
Im trying to extract MYBuild from the above string.
...
3
votes
1answer
132 views
regex negation in ant
Im trying to count the number of lines in a file that do not contain the following line:
/*================================================= */
or
Number of current users:
or
an empty line
I ...
2
votes
4answers
168 views
Python (Perl-type) regex lookahead/lookbehind
Consider a string s = "aa,bb11,22 , 33 , 44,cc , dd ".
I would like to split s into the following list of tokens using the regular expressions module in Python, which is similar to the ...
0
votes
2answers
34 views
Regex Manupulation
My input is
String input = "I am doing <span id='icms'>test</span>on <span id='icms'>regex</span> exp."
Now My output is coming like
"regex exp"
But my output is needed ...
0
votes
1answer
65 views
What is the regular expression for matching a string that starts with “<tag1 attribute=”0“>” and ends with “</tag>”?
What is the regular expression for matching a string that starts with <tag1 attribute="0"> and ends with </tag>?
0
votes
6answers
161 views
validating input string “RX-EZ12345678912345B” using regex
I need to validate input string which should be in the below format:
<2_upper_case_letters><"-"><2_upper_case_letters><14-digit number><1_uppercase_letter>
Ex: ...
2
votes
1answer
82 views
Can someone please explain the greediness in this regex
I have some text where each line of text has some good words and some bad(unwanted) words. So the pattern might look like this
good1-good2 good3 bad1-good4-bad2 some more good words
good1-good2 ...

