Difference between revisions of "Remove everything after a specific character"

From Tech-Wiki
Jump to: navigation, search
(Created page with "Category:Notepad++ '''Back to Useful Tips''' * In an open document * press '''Ctrl-F''' * Select the '''Replace''' tab * Set the search Mode to...")
 
 
(3 intermediate revisions by one other user not shown)
Line 3: Line 3:
  
 
* In an open document
 
* In an open document
* press '''Ctrl-F'''
+
* press '''Ctrl-H'''
* Select the '''Replace''' tab
+
 
* Set the search Mode to '''Regular expression'''
 
* Set the search Mode to '''Regular expression'''
 
* In '''Find what:''' string write the following regex pattern
 
* In '''Find what:''' string write the following regex pattern
Line 12: Line 11:
 
* Leave the '''Replace with :''' string blank
 
* Leave the '''Replace with :''' string blank
 
* Press '''Replace''' or '''Replace All'''
 
* Press '''Replace''' or '''Replace All'''
 +
 +
 +
----
 +
 +
'''Explanation of Regular Expression'''
 +
 +
\ General escape character
 +
. Any character
 +
+ One or more the previous character

Latest revision as of 02:42, 8 August 2016

Back to Useful Tips

  • In an open document
  • press Ctrl-H
  • Set the search Mode to Regular expression
  • In Find what: string write the following regex pattern
 \<Charachter to find>.+
  • Leave the Replace with : string blank
  • Press Replace or Replace All



Explanation of Regular Expression

\ General escape character
. Any character
+ One or more the previous character