Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I have strings like this:
string1:string2:string3
and on each line, i want to remove “:string3”, is there any way to do that?
@Tom-Wak
with the provided data I would assume that something like find: (?-s)(\w+:\w+):\w+(?=.*) replace: \1 should do the job.
(?-s)(\w+:\w+):\w+(?=.*)
\1