3
votes
6answers
326 views
How can regex ignore escaped-quotes when matching strings?
Hi,
I'm trying to write a regex that will match everything BUT an apostrophe that has not been escaped. Consider the following:
<?php $s = 'Hi everyone, we\'re ready now.'; ?>
My goal is to …
0
votes
2answers
180 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 …
1
vote
4answers
283 views
Help with PHP Regular Expressions using a Negative Look Behind
Hello,
I'm trying to write a simple function to close missing HTML tags using PHP preg_replace.
I thought it would be relatively straight-forward, but for some reason it hasn't been.
What I'm …
5
votes
3answers
637 views
Javascript: negative lookbehind equivalent?
Is there a way to achieve the equivalent of a negative lookbehind in javascript regular expressions? I need to match a string that does not start with a specific set of characters.
It seems I am …
1
vote
6answers
410 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:
…
2
votes
8answers
475 views
How do I match part of a string only if it is not preceded by certain characters?
I've created the following regex pattern in an attempt to match a string 6 characters in length ending in either "PRI" or "SEC", unless the string = "SIGSEC". For example, I want to match ABCPRI, …
