Regular expression lookarounds are zero-width assertions that verify conditions about the context of a match
0
votes
0answers
15 views
Regex Matching a domain, but not where it occurs within the URL of a different domain
I'm trying to match the following URLs within a Squid ACL (I'm trying to actually match google URLs! These aren't an example... See: http://www.google.com/supported_domains):
www.google.com
...
0
votes
2answers
21 views
Regular expression match only if followed by something else
I wanna match a string contains ';' and the ; must be between words that is
" bla ; bla" will match "bla" will match also but "bla . bla" or "bla;" wont match.
in other words the ; appears only if it ...
0
votes
1answer
28 views
match parens but not the contents
is there a succinct regex to match a pair of parens and a proceeding dot, but not the contents inside the parens. This is for syntax highlighting in Sublime Text 2 using R-Sublime.
In the following ...
1
vote
1answer
16 views
regular expression to negate a string nocache not working
I am trying to build a regular expression in apache which match with all files with extensions as .html, .css, .js, .jpg, etc... except it the url has the word "nocache"
I have read other entries in ...
0
votes
3answers
74 views
Three-in-one-regex
I have a very specific regex request. I need to match strings
containing "m_",
not containing "phys_" (always some characters after "m_"),
not ending in "Shape".
When only using the first and last ...
0
votes
1answer
53 views
Regex to find anchor tags which are without http or https in the href attribute
I have this sample text on which i want to run the regex to pull the anchor tags whose href doesn't contain http|https in the address part.
I was trying with this regex, and it is not complete yet. ...
0
votes
2answers
33 views
How to match a string until the first instance of a character that does not follow another specific character
Related question: How can I use regex to match a character (') when not following a specific character (?)?
I'm parsing a log using regex (PHP PCRE library), and trying to extract a URL from it. ...
0
votes
2answers
41 views
Regex: capture everything until specific word(s)
I have two variations of a string something like :
The Student's Companion *Author: Alcock, Pete;May, Margaret;Wright, Sharon*MIL EAN/ISBN: 9781283333115
Java Programming: Java ...
4
votes
3answers
126 views
Match pattern and exclude substrings with preg_match_all
I need to find all the strings placed between START and END, escluding PADDING substring from matched string. The best way I've found is
...
1
vote
2answers
60 views
Why the following JavaScript regex could not work? [closed]
s='<img src="http://25.media.tumblr.com/xxxxx/tumblr_xxx_1280.jpg">'
p=/(?=<img src=")http:\/\/\d*\.media\.tumblr\.com\/\w*\/?tumblr_\w*_\d{3,4}\.\w{3,3}(?=")/g
s.match(p) # return null
...
1
vote
1answer
49 views
.htaccess rewrite rule for adding a trailing slash by unmatching a string in the URL
The following .htaccess rule un-matches string admin and adds a trailing slash(/) to that URL if admin is not found in the URL
RewriteRule ^((?!admin).)*((?!\/).)$ /$1/ [L,R]
But it has an error, ...
4
votes
2answers
51 views
Overlapping regular expression
I found a similar question here. However I didn't get it working:
I have a string like "my_token_string" and need a regex to return the tokens "my_", "_token_", and "_string".
Please note that I am ...
0
votes
1answer
76 views
Regex Match NC-Comments in a string with mixed C#-Code
I have a textfile with mixed NC-Code and C#-Code. C#-Code starts with "<#" and ends with "#>".
Now I need one regex expression to find all NC-Comments. One problem is that NC-Comments starts with ...
1
vote
1answer
39 views
A regular expression related to look-arounds
Design a regular expression to extract the first two digits of sub-strings which:
End with letter
Start with a 2
So from "234b342d3", the match result should be:
23 (from 234b)
2d (from 2d)
My ...
0
votes
2answers
56 views
Regular expressions: how to match numbers?
I want to use regular expressions to match numbers like these:
58158
60360
98198
That is in the format ABCAB.
I use code below to match ABAB:
(([\d]){1,}([\d]){1,})\1{1,}
such as 5858 but how ...
1
vote
4answers
66 views
sed/awk delete equals if NOT followed by 3D
I'd like to remove the equals sign
only if is not followed by 3D. Here there is an example.
NB2HI4B2F4XWM3LNFZCGK3DJOZSXE6L=PNZSS4Y3PFZZWGSZB5GUTGKPLE=ONZXA33PNZSXEQ
So this should became
...
1
vote
2answers
86 views
regex matching char only if a specific char appeared before (conditional regex)
developing a mobile (israeli) phone number regex. currently I have
re.compile(r'^[\(]?0?(5[023456789])\)?(\-)?\d{7}$')
which catches most use cases. the problem is matching the second parenthesis ...
0
votes
1answer
37 views
How can I apply a negative lookahead to a whole capture group?
Given the following regular expression and subject text, why is the negative lookahead only applying to the last character of the named capture group URL?
// Regex
...
1
vote
3answers
58 views
PHP regex lookbehind with wildcard
I have two strings in PHP:
$string = '<a href="http://localhost/image1.jpeg" /></a>';
and
$string2 = '[caption id="attachment_5" align="alignnone" width="483"]<a ...
2
votes
3answers
81 views
RegEx to capture execution time with specific text afterwards
I have the follow log file that I am trying to parse. I'm using regular expressions to gather the information I require and got most of it done. I have a certain part of the log file that is ...
2
votes
2answers
60 views
regex mixed case excluding specific case
I need a regex able to match:
a) All combinations of lower-/upper-cases of a certain word
b) Except a couple of certain case-combinations.
I must search the bash thru thousands of source-code ...
2
votes
2answers
55 views
Why is my vim zero width positive lookbehind storing a backreference?
I am using Vim, and I have the following code:
print "Number 1 = $no1\n";
print "Number 2 = $no2\n";
When I apply the following substitute command
$s/.*\(\d\\n\)\@<=\(";\)/\1
the result is
...
2
votes
3answers
45 views
Regex issue - Matching API name
I am currently working with a large code base, in which recently one of the API's signature changed. So I need to modify thousands of files to get the new feature. So developed a java program to get ...
1
vote
2answers
31 views
Regex pattern construction to avoid selective character based on condition
I have tried the following and the o/p is expected.
String valueIn = test-3-4-HH{3-4}-FF{38-99}
String[] valueInSplit = valueIn.split("-");
o/p array = [test, 3, 4, HH{3, 4}, FF{38, 99}]
Is it ...
1
vote
2answers
215 views
Can sed regex simulate lookbehind and lookahead?
I'm trying to write a sed script that will capture all "naked" URL's in a text file and replace them with <a href=[URL]>[URL]</a>. By "naked" I mean a URL that is not wrapped inside an ...
0
votes
2answers
41 views
How can I write a regex in Java that will perform a .replaceFirst on a group that is not in a comment?
So I need to return modified String where it replaces the first instance of a token with another token while skipping comments. Here's an example of what I'm talking about:
This whole quote is one ...
1
vote
1answer
56 views
Most efficient way of parsing HTML header tags order
I am trying to determine if a given page doesn't respect the header tags (h1,h2,etc.) order. As a matter of fact, I want to be able to parse a bunch of pages and that it returns me each page that DONT ...
0
votes
1answer
79 views
complex regex C# or perl
I have the following SQL text in a file. the objective is to identify database tables names from the files. Below is just a generic example and I am looking for a generic solution, either in C# or ...
2
votes
1answer
140 views
regular expression to exclude a specific string
I am currently implementing an identity management solution that will provide users the ability to manage all of their endpoint accounts.
Currently, our company password policy matches the default ...
1
vote
1answer
131 views
Regex all character except string
I want to select all space characters except those preceded by the string, Send,.
A look-ahead using (?!) will not work. What is another way to do this?
0
votes
2answers
83 views
Python: RegEx repetitive sub group finding
I have a string Tue 6:30 AM - 12:00 PM, 3:00 PM- 7:00 PM from this I want to get
["Tue", ["6:30 AM - 12:00 PM", "3:00 PM- 7:00 PM"]]
I tried,
(
...
0
votes
1answer
41 views
Regex return value based on condition
I have two possible inputs that I need to parse with regex:
192.168.1.1:80 [172.16.1.1:8080]
or
192.168.1.1:80 [172.16.1.1]
If the :8080 is present I want to return 8080 but if not I want ...
1
vote
3answers
135 views
C# regular expression not to match certain words in string
I have been trying for hours to work out a solution for this problem. Let say there is a string
"hello Exclude1 4:32 test test Exclude2 5:23 hello 2:19 some more text 42:3 more text"
I am trying ...
-1
votes
1answer
86 views
How to select words having 3 and more characters between 2 words
Below text is filtered from a huge text using a regex where i have to find sentences having dog and cat without porc and pig.
What, a Dog, a Rat, a Mouse, a Cat to scratch a man to
Where Iuliet ...
2
votes
1answer
61 views
How to find words with more than 3 characters betweens 2 other words
I have 2 sentences:
Today one dog will eat 2 kg of meats more than a cat
Human always prefer dog and cat
With the help of regex:
I would like to find sentences that have dog and cat together ...
2
votes
3answers
57 views
Regex lookahead more than one element
Is it possible to use a lookahead to establish whether one or more characters does/doesn't exist when those characters do not immediately follow the lookahead assertion?
e.g.
Given regex similar to ...
1
vote
2answers
58 views
Regex look ahead for between n and m of a character class anywhere within input
What's the regex look ahead that asserts that there is at least n, but no more than m, of a character class within the input.
To make a simple concrete example, suppose I want to assert there are 5-8 ...
0
votes
1answer
61 views
Using REGEX in if-elsif-else-end
I am trying to use REGEX to do a if-then-elsif-then-else-then-end
Example:
s = "foobar123"
if end of s is 3
then return "foo"
elsif end of s is 2
then return "bar"
else
then return ...
0
votes
1answer
47 views
Matching a word if preceding text is not “class=' ”
I'm trying to create a regex for a search that will look at the following code and return only the ids and not the classes:
1 id="contact"
2 class="contact"
3 #contact
4 .contact
I want to ...
1
vote
1answer
117 views
Converting a regular expression for skipping over missing information from python to java-7
I have the following test cases for which I need to develop a regular expression in order to catch particular sections of information in named groups.
The test cases are:
Title v01
Title v01 c01
...
2
votes
1answer
121 views
regex: performance of lookbehind while still capturing data?
In my project in C# I am parsing text for dates. The dates can be in various formats, objective is to find and correct a number of date format errors. Various date formats means a set of defined date ...
1
vote
1answer
83 views
Negative Look Ahead
Consider two printk kind of function calls -
TRACE_BR(TRACE , "END. rc = %d\n", rc );
TRACE_BR(TRACE, "Value = %s", string );
I am writing a regex to match whole function calls like the above ...
2
votes
2answers
45 views
Looking for a string that is not inside another string pattern
I'm having a classic if, else, endif implementation in a proprietary language.
Given I have the string below, I want to locate the [!--@Else--] statement, but only the one that is NOT inside the ...
0
votes
5answers
197 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
2answers
197 views
Java error - Look-behind pattern matches must have a bounded maximum length near index 15
I'm trying to match the last set of 0s in a decimal. Eg: In 9780.56120000 0000 would be matched. This regex:
(?<=\.\d{0,20})0*$
seems to work in RegexBuddy but Java fails with the following ...
0
votes
2answers
102 views
Why is my Ruby lookahead regex not working [duplicate]
Possible Duplicate:
RegEx match open tags except XHTML self-contained tags
I tested my regex in rubular.com and it works, but when I run the code it behaves differently.
I want to parse ...
1
vote
1answer
61 views
How does variable-size lookaround work
How RegEx engines works internally when they reach to more than one look-around part in a RegEx.
I already read this excellent article but it do not cover lookaround. Can anybody please explain ...
0
votes
2answers
175 views
Regex Replace all found occurrences if the word not matches with the given prefix
How can I replace text value without matching given prefix of text??
For Example:
test hello world... I know hello world, this seems hello world..
then our replace value is "HI"
the text will be..
...
0
votes
4answers
94 views
A pattern matching an expression that doesn't end with specific sequence
I need a regex pattern which matches such strings that DO NOT end with such a sequence:
\.[A-z0-9]{2,}
by which I mean the examined string must not have at its end a sequence of a dot and then two or ...
2
votes
3answers
70 views
regex to replace a word if it doesn't have specific one before
Using regex in C# I should replace one word if it doesn't have specific one before
In my example it to replace "Ballmer" with "Steve Ballmer"
In:
...text...Ballmer...text
Result:
...text...Steve ...
