Tagged Questions
2
votes
8answers
655 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, ...
1
vote
6answers
1k 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:
...