Tagged Questions
3
votes
1answer
152 views
Regex negative lookbehind in Ruby doesn't seem to work
Making an argument parser. I want to split a string into an array where the delimiter is ", " except when preceded by "|". That means string
"foo, ba|, r, arg"
should result in
`["foo", "ba|, r", ...
2
votes
2answers
76 views
Regex: Difference betwen negative lookbehind and negation
From regular-expressions.info:
\b\w+(?<!s)\b. This is definitely not the same as \b\w+[^s]\b. When applied to Jon's, the former will match Jon and the latter Jon' (including the apostrophe). I ...
1
vote
3answers
201 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
6answers
995 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:
...