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
Post a Comment