regex - regular expression for find and replace -



regex - regular expression for find and replace -

i've got strings like:

('michael herold','michael herold'),

but need remove lastly parts end with:

('michael herold'),

i'm still new regular expressions confuse me. i'm using notepad++.

find: \('([^']*)','\1'\) replace: ('\1')

regex notepad++

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -