Jeroen jeroen@je-ju.net wrote:
Hi,
Hi
I'm having a bit of a trouble to match a '.' which is part of a string surrounded by " ". I've tried: (?=".*).(?=.*".*$), but this doesn't seem to work.
Can anyone please help out?
Find : "(.*)?.(.*)?" Replace : first name: $1 ; second name: $2
will change : "jo.bar" to : first name: jo ; second name: bar
But imho, there must be even easier way to do it,