I can't fing a way, to match any characters except the phrase 'foo'.
Using [^abc]+ matches any character except a, b or c, but I need to not
match 'foo', because f is ok, o is ok, but foo - 3 letters at once not
Any clue?
Thanks
--
Daniel Koñczyk
Using [^abc]+ matches any character except a, b or c, but I need to not
match 'foo', because f is ok, o is ok, but foo - 3 letters at once not
Any clue?
Thanks
--
Daniel Koñczyk
Comment