Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
4answers
1k views

Does lookaround affect which languages can be matched by regular expressions?

There are some features in modern regex engines which allow you to match languages that couldn't be matched without that feature. For example the following regex using back references matches the ...
14
votes
3answers
397 views

How does the regular expression ‘(?<=#)[^#]+(?=#)’ work?

I have the following regex in a C# program, and have difficulties understanding it: (?<=#)[^#]+(?=#) I'll break it down to what I think I understood: (?<=#) a group, matching a hash. ...
12
votes
3answers
710 views

Can you salvage my negative lookbehind example for commifying numbers?

In the "Advanced Regular Expresssion" chapter in Mastering Perl, I have a broken example for which I can't figure out a nice fix. The example is perhaps trying to be too clever for its own good, but ...
5
votes
1answer
465 views

Backreferences in lookbehind

Can you use backreferences in a lookbehind? Let's say I want to split wherever behind me a character is repeated twice. String REGEX1 = "(?<=(.)\\1)"; // DOESN'T WORK! String REGEX2 = ...
5
votes
3answers
333 views

RegEx Advanced : Positive lookbehind

This is my test-string: <img rel="{objectid:498,newobject:1,fileid:338}" width="80" height="60" align="left" src="../../../../files/jpg1/Desert1.jpg" alt="" /> I want to get each of the JSON ...
4
votes
3answers
456 views

Regular expression lookbehind problem

I use (?<!value=\")##(.*)## to match string like ##MyString## that's not in the form of: <input type="text" value="##MyString##"> This works for the above form, but not for this: ...
4
votes
6answers
541 views

Replace all “\” characters which are *not* inside “<code>” tags

First things first: Neither this, this, this nor this answered my question. So I'll open a new one. Please read Okay okay. I know that regexes are not the way to parse general HTML. Please take note ...
3
votes
1answer
152 views

Regex negative lookbehind in Ruby doesn't seem to work

Making an argument parser. I want to split a string into an array where the delimiter is ", " except when preceded by "|". That means string "foo, ba|, r, arg" should result in `["foo", "ba|, r", ...
3
votes
1answer
132 views

Regex - Combining positive and negative lookbehind

I am doing some replaces in some huge SSIS packages to reflect changes in table- and column names. Some of the tabels have columnnames witch are identical to the tablenames and I need to match the ...
3
votes
4answers
182 views

js regex escaping quotes

I want to escape all quotes that comes only after the text H1: For instance, : H1: "text here" should become: H1: &quot;text here&quot; This would be easy with lookbehind, but that's ...
2
votes
1answer
61 views

Regex positive lookahead with backreference

I'm trying to build a very specific editor with syntax highlight. I've made all the simple stuff with regular expressions wich was simple enough, but now I would like to add some advanced features ...
2
votes
4answers
145 views

Nested regex lookahead and lookbehind

I am having problems with the nested '+'/'-' lookahead/lookbehind in regex. Let's say that I want to change the '*' in a string with '%' and let's say that '\' escapes the next character. (Turning a ...
2
votes
2answers
76 views

Regex: Difference betwen negative lookbehind and negation

From regular-expressions.info: \b\w+(?<!s)\b. This is definitely not the same as \b\w+[^s]\b. When applied to Jon's, the former will match Jon and the latter Jon' (including the apostrophe). I ...
2
votes
2answers
64 views

Mod Rewrite RegEx To Match Only If Previous Subset Matched

I am trying to make what I think is a simple regex for use with mod_rewrite. I've tried various expressions, many of which I thought were promising, but all of which ultimately failed for one reason ...
2
votes
4answers
175 views

Invalid regular expression error

I'm trying to retrieve the category part this string "property_id=516&category=featured-properties", so the result should be "featured-properties", and I came up with a regular expression and ...
2
votes
1answer
138 views

Quantifier range not working in lookbehind

Okay so I'm working on a project where I need a regex that can match a * followed by 1-4 spaces or tabs and then followed by a row of text. Right now I'm using .* after the lookbehind for testing ...
2
votes
2answers
67 views

RegEx: Matching Pattern within Pattern - I think I need to use Positive Lookbehinds?

I'm trying to use RegEx to find a pattern within a pattern. Specifically what I want to do is capture a URL into a reference and search within that for everything that comes after the last = sign and ...
2
votes
3answers
589 views

Regular Expression - Match all but first letter in each word in sentence

I've almost got the answer here, but I'm missing something and I hope someone here can help me out. I need a regular expression that will match all but the first letter in each word in a sentence. ...
2
votes
2answers
208 views

What's the technical reason for “lookbehind assertion MUST be fixed length” in regex?

For example,the regex below will cause failure reporting lookbehind assertion is not fixed length: #(?<!(?:(?:src)|(?:href))=["\']?)((?:https?|ftp)://[^\s\'"<>()]+)#S Such kind of ...
2
votes
4answers
161 views

Why doesn't finite repetition in lookbehind work in some flavors?p

I want to parse the 2 digits in the middle from a date in dd/mm/yy format but also allowing single digits for day and month. This is what I came up with: (?<=^[\d]{1,2}\/)[\d]{1,2} I want a 1 ...
2
votes
2answers
135 views

Lazy Regex Match in .NET. What's wrong here?

In the following example I would like to retrieve the text between pMAINp and the first pMDSp. The regex has a look-behind and a look-ahead: string contents = "pMAINp MAP B FlightTest Load pMDSp ...
2
votes
4answers
443 views

Remove leading whitespaces using variable length lookbehind in RegExp

I'm wondering if variable length lookbehind assertions are supported in JavaScript's RegExp engine? For example, I'm trying to match the string "variable length" in the string "[a lot of whitespaces ...
1
vote
3answers
38 views

Regular Expression Lookbehind doesn't work with quantifiers ('+' or '*')

I am trying to use lookbehinds in a regular expression and it doesn't seem to work as I expected. So, this is not my real usage, but to simplify I will put an example. Imagine I want to match ...
1
vote
2answers
159 views

Java regex error - Look-behind group does not have an obvious maximum length

I get this error: java.util.regex.PatternSyntaxException: Look-behind group does not have an obvious maximum length near index 22 ...
1
vote
2answers
60 views

Ruby regex that matches unless escaped with \

To identify things like: [stack][overflow] or [is great!] I do: /\[([^\]]+)\](\[([^\]]+)\])?/.match(s) Now I want to extend this such that if [...][...] or [...] comes after \ it won't be ...
1
vote
2answers
172 views

Javascript do not match str surrounded with quotes

I'm writing a regular expression in javascript that replaces whitespaces except when: Some specific syntax is in front of the whitespace It's surrounded in both single as double quotes (escaped ...
1
vote
1answer
296 views

Regex to match quoted strings with negative lookbehind (.NET)

I am trying to create a .NET Regex that will match quoted strings in VB.NET source code, but excluding certain unwanted strings, such as strings in XML comments and region labels etc. Here's a data ...
1
vote
5answers
98 views

Regular expression to match not the beginning/end of a line

I would like a regular expression to match only " that don't come at the start of a line or after white space at the start of a line don't come at the end of a line or before white space at the end ...
1
vote
2answers
284 views

Javascript/RegExp: Lookbehind Assertion is causing a “Invalid group” error

I'm doing a simple Lookbehind Assertion to get a segment of the URL (example below) but instead of getting the match I get the following error: Uncaught SyntaxError: Invalid regular expression: ...
1
vote
1answer
118 views

How do I make a regex with a lookbehind assertion that still works at the start of a string

I need to emulate the behavior of \b at the start of a string, where I'm adding additional characters to the set that count as a word boundary. Right now I'm using something like: ...
1
vote
3answers
337 views

How can I use lookbehind in a C# Regex in order to skip matches of repeated prefix patterns?

How can I use lookbehind in a C# Regex in order to skip matches of repeated prefix patterns? Example - I'm trying to have the expression match all the b characters following any number of a ...
1
vote
3answers
1k views

Ruby 1.9 Regex Lookbehind Assertion & Anchors

Ruby 1.9 regex supports lookbehind assertion but I seem to have difficulty when passing anchors in the pattern. When anchors are passed in the lookahead assertion it runs just fine. "well substring! ...
1
vote
1answer
261 views

Negative look-around

the following regexp is wrong - can someone please help to find all :-) that do not have "please ignore me " in front? I have not previously needed such an regexp. The word boundaries might confuse ...
1
vote
3answers
201 views

Need variable width negative lookbehind replacement

I have looked at many questions here (and many more websites) and some provided hints but none gave me a definitive answer. I know regular expressions but I am far from being a guru. This particular ...
1
vote
2answers
204 views

Java RegExp ViewState

I am porting some functionality from a C++ application to java. This involves reading non-modifiable data files that contain regular expressions. A lot of the data files contain regular expressions ...
1
vote
4answers
204 views

Naming convetion of regex,lookahead and lookbehind

Why is it counter intuitive? /(?<!\d)\d{8}(?!\d)/,here (?<!\d) comes first,but called lookbehind,(?!\d) next,but called lookahead.All are counter intuitive. What's the reason to name it this ...
1
vote
3answers
1k views

Javascript does not support positive lookbehind

I have the following regular expression in .Net (?<=Visitors.{0,100}?"value">)[0-9,]+(?=</div>) and the following text <div class="text">Visitors</div> <div ...
1
vote
6answers
995 views

A regex problem I can't figure out (negative lookbehind)

how do i do this with regex? i want to match this string: -myString but i don't want to match the -myString in this string: --myString myString is of course anything. is it even possible? EDIT: ...
1
vote
1answer
2k views

Ruby Regex match unless escaped with \

Using Ruby I'm trying to split the following text with a Regex ~foo\~\=bar =cheese~monkey Where ~ or = denotes the beginning of match unless it is escaped with \ So it should match ~foo\~\=bar ...
0
votes
2answers
17 views

Regex conditional lookbehind character match

So I want to find the string "to" in a string, but only when it is standalone. It could be at the beginning of the string, as in "to do this", so I can't search " to ". What I want to do is say, if ...
0
votes
1answer
48 views

Unlimited quantifiers in a complex lookbehind

I'm having a lot of trouble writing this regular expression: (?<=\s+|^\s*|\(\s*|\.)(?:item|item1|item2)(?=\s+|\s*$|\s*\)|\.) It works very well on my regex editor (Expresso) and in the .NET ...
0
votes
3answers
59 views

regex to select between <anchor1> and <anchor2> while ignoring all text inside any <>

I have the following two types of text: Type one: <div class="meta-name">Corporate Officers</div> <div class="meta-data"><table border="0" cellspacing="0" cellpadding="0" ...
0
votes
2answers
140 views

php preg_replace regex lookahead

Iam trying to replace Ampersands on my html sidewide using preg_replace, but the issue is that it breaks inline javascript && or javascript url like ?page=test&id=1 Now i have this code, ...
0
votes
1answer
142 views

Regex remove quotes around integers?

Let's say I have a string "\"Bob\",\"1\",\"Mary\",\"2\"". Is it possible to remove only the quotes around the numbers and not the letters? I've tried look-ahead/behind but the non variable length for ...
0
votes
2answers
93 views

PCRE: (+) and (-) look ahead/behind (Regex)

I have the following string: <A href="CarPage.asp?parent=CAR123+++&Color=RED">The Car is Red - Its Fast</a> And I want to extract: CAR123 RED The Car is Red - Its Fast What I ...
0
votes
2answers
76 views

Regex Look-Behind for Right to Left event

I'm extracting the events ending with Windows LogonIDs... this means like: Special Privileges assigned to a new Logon: Logon Id: 0x007d I thought this is the best way to do it: ...
0
votes
1answer
49 views

Difficulties with constructing this JavaScript regex

I would like to construct a regular expression that matches any letter (including accented and Greek), number, hyphens and spaces with a total allowed characters length between 3 and 50. This is what ...
0
votes
2answers
171 views

Can someone check this regex statement please?

I just need to verify that this regex statement will do what I want. Given the following json string {"a":"1","Provider":"WebHook","b":"2"} I need to ensure that the following regex ...
0
votes
4answers
197 views

Regex to match tag contents while simultaneously omitting leading and trailing whitespace

I am trying to write a regex that matches entire contents of a tag, minus any leading or trailing whitespace. Here is a boiled-down example of the input: <tag> text </tag> I want ...
0
votes
2answers
107 views

Regexp for selecting spaces between digits and decimal char

I want to remove spaces from strings where the space is preceeded by a digit or a "." and acceded by a digit or ".". I have strings like: "50 .10", "50 . 10", "50. 10" and I want them all to become ...

1 2