Tagged Questions

4
votes
6answers
122 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 …
0
votes
3answers
53 views

How to use lookbehind or lookahead and replace the matched string?

Hi, I am stuck at one more RegEx. Sample input : project description I want to write RegEx. that if word "description" is found and its preceded by word "project" then prepend "project …
0
votes
2answers
169 views

Javascript does not support positive lookbehind

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

How to non-greedy multiple lookbehind matches

Source: <prefix><content1><suffix1><prefix><content2><suffix2> Engine: PCRE RegEx1: (?<=<prefix>)(.*)(?=<suffix1>) RegEx2: …
-2
votes
4answers
239 views

Help with negative lookbehind in regular expressions

I am working on a ASP.NET response filter that rewrites URL's to point to a different domain in specific situations. Because ASP.NET chunks the response writes, my filter gets called several times …
0
votes
3answers
201 views

Extract a portion of text using RegEx

Hi, I would like to extract portion of a text using a regular expression. So for example, I have an address and want to return just the number and streets and exclude the rest: 2222 Main at King …
1
vote
6answers
396 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: …
0
votes
3answers
414 views

RegExp in ActionScript 3: How to exclude a complex prefix?

Hi, AS3 RegExp engine (and ECMAScript based JavaScript) do not support complex "lookbehind" expressions. (lookahead expressions are fully supported.) For example: …
0
votes
4answers
761 views

Regex: How to match the first word after an expression

For example, in this text: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu tellus vel nunc pretium lacinia. Proin sed lorem. Cras sed ipsum. Nunc a libero quis risus sollicitudin …
1
vote
1answer
772 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 …