dtx
dtx

Reputation: 340

Regular expression - match strings between range

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

Answers (1)

revo
revo

Reputation: 48711

If input string is always a similar UPDATE statement:

UPDATE\s*\K|([^;]+)

Live demo

Upvotes: 1

Related Questions