Word Regex

From notebook

(Difference between revisions)
Jump to: navigation, search
(Created page with "([A-z])([!A-z, ]*^13) Replace \1placemarker\2 Puts "placemarker" between English and non English.")
Line 1: Line 1:
 +
To remove questions? Before their answers.
 +
search box ^13*\?
 +
replace box ^13
 +
(leaves only "Before their answers")
 +
([A-z])([!A-z, ]*^13)
([A-z])([!A-z, ]*^13)
Replace \1placemarker\2
Replace \1placemarker\2
Puts "placemarker" between English and non English.
Puts "placemarker" between English and non English.
 +
[https://wordmvp.com/FAQs/General/UsingWildcards.htm a regex explanation site]

Revision as of 02:35, 17 July 2018

To remove questions? Before their answers. search box ^13*\? replace box ^13 (leaves only "Before their answers")

([A-z])([!A-z, ]*^13) Replace \1placemarker\2 Puts "placemarker" between English and non English. a regex explanation site

Personal tools