Remove everything before a specific character
From Tech-Wiki
Revision as of 02:42, 8 August 2016 by Fabricio.Lima (Talk | contribs)
- In an open document
- press Ctrl-H
- Set the search Mode to Regular expression
- In Find what: string write the following regex pattern
^.+[<Character to find>]
- Leave the Replace with : string blank
- Press Replace or Replace All
Explanation of Regular Expression
^ Beginning of the string . Any character + One or more the previous character [ ] One character of