13
5
Using notepad++ I have the following text.
This little piggy went to market, \textbf{smith1774}
This little \textbf{ben1864} piggy stayed \textbf{mueller2867} home,
This little piggy had roast beef
Now I want to remove the \text{}
but keep the text in the middle.
I cant do a simple search and replace in two steps (\text{
+ }
) as my document contains {}
in other positions.....
Great, so the $1 keeps all the text? – lukeg – 2017-10-26T13:25:30.150
1it keeps the text what is captured within the brackets (
([^}]*)
) – Máté Juhász – 2017-10-26T13:30:47.6474
Specifically,
– Flimbus Akimbo – 2017-10-26T18:56:20.660$1
represents the first capturing group, denoted with parentheses. https://www.regular-expressions.info/refcapture.html1I couldn't get this to work until I changed the replace text from $1 to \1, but I'm using Notepad2, not Notepad++. Great tip though! – jacobsee – 2017-10-26T20:35:05.297
I've always used
\1
,\2
, etc. as the replace value in NP++. – Tom Carpenter – 2017-10-27T08:17:49.917@MátéJuhász Please help me on this https://stackoverflow.com/questions/59934554/notepad-how-to-find-replace-for-only-to-those-characters-which-are-within
– ashutosh – 2020-01-27T17:23:14.140