how to remove text before (regex)
-
hi guys,
can you help me how i can get output like this on notepad++:
john doe|4135870002981971|05|17|111
jack sparrow|5202970000032044|04|18|121to
4135870002981971|05|19|111
5202970000032044|04|18|121 -
If you know the term regex , you really should have no trouble with this conversion. What have you tried? Maybe you are close and it only needs a slight tweak…
Maybe a hint is that when you are working with
|
and regex, you need to use\|
instead of just plain|
… -
sorry. i am beginner.
can you tell me how to do it? :) -
Try this:
Find what zone:
(?-s)^.+?\|
Replace with zone: make sure this is EMPTY
Search mode: Regular expression