Tagged Questions
3
votes
4answers
185 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: "text here"
This would be easy with lookbehind, but that's ...
2
votes
2answers
326 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: ...
2
votes
4answers
193 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
4answers
456 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
2answers
185 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
276 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
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 ...
0
votes
1answer
51 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 ...