Add something before a specific word with regex
-
Hi, Happy New Year !
I have a problem at the end of the year. I must add a word before a specific word using regex.
I have not bought in my life elsewhere than from us,</h1></td>
So, i want to add the word
SECRET
before the wordlife
, in order to become:I have not bought in my SECRET life elsewhere than from us,</h1></td>
I tried a solution, but it’s not good.
Search:
(?:(life elsewhere)).*\G
REPLACE BY:
SECRET
Of course, I can make a simple Search and Replace, but I need a regex solution.
-
it’s not good
There are two reasons that’s not good. First, because you are consuming the
life elsewhere
text, and everything after that text, but not including any of that in the replacement. So instead of inserting, you are replacing. Second, because you are using the\G
anchor, which anchors the end of your current match to the end of the previous match – and I don’t think you can back up to make the current match have to line up and end at the end of the previous (and for your stated goal, it’s completely unnecessary for doing something that complicated).There’s actually a third reason it’s not good, but that’s just from a stylistic view; this comment doesn’t affect whether or not it works. You are using the unnumbered-group construct
(?:)
around a normal numbered capture group()
, which effectively says “avoid putting this group in a numbered group, but everything inside this group needs to go in a forced number group”. That would have been much easier as(life elsewhere)
without the wrapping , still puttinglife elsewhere
in group 1.But your stated goal doesn’t need any of those constructs. There are multiple ways I would accomplish this:
- FIND =
life elsewhere
, REPLACE =SECRET $0
– this just relies on the fact that the$0
substitution embeds the full match from FIND, so you are just puttingSECRET
followed by a space before it. - FIND =
(?=life elsewhere)
, REPLACE =SECRET\x20
– this one does a lookahead assertion, solife elsewhere
must come immediately after the “cursor”, but none of your text gets “consumed” by the match; in the replacement, you just needSECRET
and a space (which I indicated with\x20
so you could copy/paste, but you could just type the space afterSECRET
– either works), so it will putSECRET
and space at the “cursor”, which is immediately before the matched-lookaheadlife elsewhere
, and you don’t need to store any of the match portion, thus saving memory. - FIND =
life elsewhere
, REPLACE =SECRET life elsewhere
– this is the simplest, which will work whether or not you tick the regex box; but it is still a regex solution which meets all your example data, despite your artificial requirement of wanting a regex.
Of course, I can make a simple Search and Replace, but I need a regex solution.
Which could mean you actually aren’t telling us everything about your data, and you’re going to come back and change the rules on us when some uniqueness about your actual data contradicts what you’ve shown… Good luck with that.
----
Do you want regex search/replace help? Then please be patient and polite, show some effort, and be willing to learn; answer questions and requests for clarification that are made of you. All example text should be marked as literal text using the
</>
toolbar button or manual Markdown syntax. To makeregex in red
(and so they keep their special characters like *), use backticks, like`^.*?blah.*?\z`
. Screenshots can be pasted from the clipboard to your post usingCtrl+V
to show graphical items, but any text should be included as literal text in your post so we can easily copy/paste your data. Show the data you have and the text you want to get from that data; include examples of things that should match and be transformed, and things that don’t match and should be left alone; show edge cases and make sure you examples are as varied as your real data. Show the regex you already tried, and why you thought it should work; tell us what’s wrong with what you do get. Read the official NPP Searching / Regex docs and the forum’s Regular Expression FAQ. If you follow these guidelines, you’re much more likely to get helpful replies that solve your problem in the shortest number of tries. - FIND =
-
FIND:
(.*)(life elsewhere)
REPLACE BY:
\1SECRET \2