Reputation: 340
I have a string which looks like this:
UPDATE id = :id, password = :password;
I want to match this string:
id = :id, password = :password
I wrote this regexp:
UPDATE\s(\S+\s*=\s*\S+)\s
but it matches only
id = :id,
I tried also this regexp:
UPDATE\s(\S+\s*=\s*\S+)\s;
but it cannot recognize a range what I want to match
How I have to define range in the right way to match that what I want?
I will be grateful for any advice.
Upvotes: 0
Views: 70