Tagged Questions

3
votes
1answer
149 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", ...
1
vote
2answers
60 views

Ruby regex that matches unless escaped with \

To identify things like: [stack][overflow] or [is great!] I do: /\[([^\]]+)\](\[([^\]]+)\])?/.match(s) Now I want to extend this such that if [...][...] or [...] comes after \ it won't be ...
1
vote
1answer
2k views

Ruby Regex match unless escaped with \

Using Ruby I'm trying to split the following text with a Regex ~foo\~\=bar =cheese~monkey Where ~ or = denotes the beginning of match unless it is escaped with \ So it should match ~foo\~\=bar ...