Tagged Questions

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 ...
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 ...
1
vote
3answers
200 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 ...
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
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 ...
0
votes
4answers
567 views

Use String for Pattern but Exclude it from Being Removed

i'm pretty new on regex, i have learned something by the way, but is still pour knowledge! so i want ask you for clarification on how it work! assuming i have the following strings, as you can see ...