I have a document like this, so i wan't to remove text before | character on any line. Work in notepad++. So what i can do?
Do you want to delete everything before the | and including the | character. You can try find: (. +\|) and leave replace empty.
Highlight the text in the Notepad box and press the Delete key on your keyboard. Type Ctrl + O, or right-click in the Notepad box. At the Save Notepad Changes prompt, click Yes.
Please use regex to remove anything before |
example
dsfdf | fdfsfsf dsdss|gfghhghg dsdsds |dfdsfsds
Use find and replace in notepad++
find: .+(\|)
replace: \1
output
| fdfsfsf |gfghhghg |dfdsfsds
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With