Tagged Questions
5
votes
3answers
284 views
negative lookbehind and greedy quantifiers in php
I'm using a regex to find any URLs and link them accordingly. However, I do not want to linkify any URLs that are already linked so I'm using lookbehind to see if the URL has an href before it.
This ...
3
votes
2answers
152 views
Regex: remove scheme unless it's http(s). (capture negative lookbehind pattern)
I'm having a regex blackout here. How do I capture a negative lookbehind pattern again?
I'm trying to remove the scheme (including ://) of a uri unless it is http/https. I'm half way there (or I ...
1
vote
3answers
70 views
Problem with negative lookbehind regex capturing
I try to match email addresses but only when they are not preceeded with "mailto:". I try this regular expression:
...
1
vote
3answers
199 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
4answers
776 views
Help with PHP Regular Expressions using a Negative Look Behind
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 basically ...