View Single Post
Old 01-14-2014, 07:27 AM   #4
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,739
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by mobiuser View Post
The regex doesn't seem to work. I'm using notepad++.
You description of the string that you're looking for is somewhat vague. Assuming that you want to replace:

Code:
<b>take down</b> phrasal verb
with

Code:
<b>take down</b> phrasal verb
You could search for:

Code:
<b>(.*)<\/b> (phrasal verb)
and replace it with:

Code:
<b>⌂\1</b> \2
Doitsu is offline   Reply With Quote