I am trying this regex
(?<!(John|Joe)) (Taylor)
On this text
John James Taylor
but I am getting "invalid pattern in lookbehind" here http://www.rubular.com/r/TjD2d4oG5z
I am trying to match "Taylor" that does not have John or Joe before it.
Any tips please?