How do I replace a particular sentence across multiple files?
-
@José-Luis-Montero-Castellanos The
\1\2
works but I will stick to what has been advised above! Thanks a lot to all of you @Alan-Kilborn @José-Luis-Montero-Castellanos @Terry-R @PeterJones -
Is this the best RegEx to use in this case:
(?=Please\K\s*E-mail)\K([\S\s]*?treatment)
? -
@Scott-Nielson said in How do I replace a particular sentence across multiple files?:
Is this the best RegEx to use in this case: (?=Please\K\sE-mail)\K([\S\s]?treatment) ?
I applaud you for trying something, but it appears more like you have just added in stuff until you got it to work, rather than fully understand what it is you are creating. Do you understand what the
\K
does, or even the[\S\s]
?Your use of ${1} and ${2} in an earlier post suggests you think the lookahead is the first capture group, it is not.
I was doing a bit of work on your request, and although I haven’t yet completed it I will show you what I have thus far.
(?-s)(Please)(?:(\s|\R)+)(E-mail)(?:(\s|\R)+)(.+?(?:(\s|\R)+)?treatment)
Now it isn’t finished as I think you need to elaborate on exactly the formats your text will present as. From that a better regex can be produced. But my initial Find expression above covers these scenarios:
Please E-mail .............. treatment (a <p........> string)Please E-mail ............treatment (a <p........> string)Please E-mail ............treatment
Terry
-
@Terry-R I understand that a
\K
wil help stop finding/matching text or something else that follows at that point and\s*
is to find what follows even if it is on the next line. The RegEx you gave just above is Greek to me but it does not find the very first instance of the text,Please
E-mail
blah blah blah blah blah blah blah
treatment
I hope you can help find/match that also.
I also observed that there are now 5 capture groups -
@Terry-R
\s
and\S
, equate to “match any whitespace” and “match any non-whitespace” respectively. That is, if you specify[\s\S]
, your regular expression will match any one character, regardless of what it is, and if you use[\s\S]*
your regular expression will match anything. -
Please E-mail .............. treatment (a <p........> string)Please E-mail ............treatment (a <p........> string)Please E-mail ............treatment
after replacement, should become:
<b>Please E-mail .............. treatment</b> (a <p........> string)<b>Please E-mail ............treatment</b> (a <p........> string)<b>Please E-mail ............treatment</b>
That means, I want a
<b>
and</b>
to be added on either side of the text I posted above, in this “reply” to you -
You keep on changing your spec. At some point, you need to start learning how to do it yourself rather than asking a particular Community member to keep editing all the free regex they’ve already given you.
Give it a try. Read the docs. Ask specific questions if you don’t understand specific syntax.
----
Please note: This Community Forum is not a data transformation service; you should not expect to be able to always say “I have data like X and want it to look like Y” and have us do all the work for you. If you are new to the Forum, and new to regular expressions, we will often give help on the first one or two data-transformation questions, especially if they are well-asked and you show a willingness to learn; and we will point you to the documentation where you can learn how to do the data transformations for yourself in the future. But if you repeatedly ask us to do your work for you, you will find that the patience of usually-helpful Community members wears thin. The best way to learn regular expressions is by experimenting with them yourself, and getting a feel for how they work; having us spoon-feed you the answers without you putting in the effort doesn’t help you in the long term and is uninteresting and annoying for us.
----
Useful References
-
@PeterJones I could only think of this RegEx:
(?=Please\K\s*E-mail)\K([\S\s]*?treatment)
which may or may not be the appropriate RegEx (but it works) - I asked if that is best which is why @Terry-R responded. I am waiting for his response. You may also reply. Like I said, I want to add<b>
and</b>
on either side of what is searched for. -
Peter was trying to say that this is a place for giving you some hints in the right direction, not solving your exact problem for you, then you change the problem and someone solves that exact problem, then you change the problem yet again…
For the regulars here, this gets boring fast, and they are less and less likely to provide the requested stuff. For example, I’m already very bored with this thread and will be “clicking thru” it as more posts are added.
It’s about the power of learning, after you receive some pointers in the right direction. If you can show that you’ve learned something and have a nuancy follow-up question about something specific, that is well-tolerated.
But continuously changing/growing the problem and expecting a ready answer for every tweak is probably not going to get you far.
but it appears more like you have just added in stuff until you got it to work, rather than fully understand what it is you are creating
That’s a problem, too.
-
@Scott-Nielson said in How do I replace a particular sentence across multiple files?:
Like I said, I want to add <b> and </b> on either side of what is searched for.
Like the other members, it is hard helping you if you keep changing the criteria. However I will oblige with 1 further solution.
But first, you need to understand that while we will help, we won’t keep supporting every little change you make to the request. So before I provide a solution (as I see it) I need from you:
- Every type of variety of line format you are looking for.
- The required solution for each variety. Maybe this just means saying “I want the line(s) selected to be returned as is with the <b> at the start and </b> at the end”. At least that’s what your recent reply to my interim solution seems to state.
And as we talk about my interim solution, I find that it does select the first of those 3 varieties. See this image:
Terry
PS maybe as you saw it you weren’t changing the criteria, but you certainly weren’t telling us the whole story. Having to extract information is very hard and is another reason why we just give up helping some posters!
-
Hello, @scott-nielson, @terry-r, @alan-kilborn, @peterjones and All,
Referring to your post, where you showed us your given BEFORE data and your expected AFTER data, I’ve got a very simple solution !
So, given your INPUT text, below :
Please E-mail .............. treatment (a <p........> string)Please E-mail ............treatment (a <p........> string)Please E-mail ............treatment I even ADDED this case : (a <p........> string)Please........E-mail............treatment..............
-
Open the Replace dialog (
Ctrl + H
) -
SEARCH
(?s)Please.+?E-mail.+?treatment
-
REPLACE
<b>$0</b>
-
Uncheck all BOX options
-
Check the
Wrap around
option -
Check the
Mach case
option, if necessary -
Select the
Regular expression
search mode -
Click once on the
Replace All
button or several times on theReplace
button
You should get your expected OUTPUT text :
<b>Please E-mail .............. treatment</b> (a <p........> string)<b>Please E-mail ............treatment</b> (a <p........> string)<b>Please E-mail ............treatment</b> I even ADDED this case : (a <p........> string)<b>Please........E-mail............treatment</b>..............
Best Regards,
guy038
-
-
Thanks a lot @guy038 - you made my efforts fruitful!
-
@guy038 said in How do I replace a particular sentence across multiple files?:
SEARCH (?s)Please.+?E-mail.+?treatment
REPLACE <b>$0</b>
I initially thought it would be that simple, but then considered the following (admittedly possibly not real-life examples):
Please E-mail .............. treatment (a <p........> string)Please E-mail ............treatment (a <p........> string)Please E-mail ............treatment Please mail ............eatment Please E-mail ............treatment Please E-mail ............reatment Please E-mail ............treatment
So the regex is forcing to be true, so it will expand until it DOES find the required text. So I was thinking of using
(?s)
and also.{1,5}
to limit the expansion. It does seem a bit rough but might be enough to limit the regex to ONLY what it should capture.Admittedly one thing that was lacking in the OP’s original request was what they wanted to do with it. The multiple scenarios with possible CR/LF’s in between (or not) complicates matters.
Terry
-
@Terry-R said in How do I replace a particular sentence across multiple files?:
The multiple scenarios with possible CR/LF’s in between (or not) complicates matters.
For what it’s worth, I continued down the road with my idea. This solution will prevent finding occurances of “Please” immediately followed by something which is NOT the text sought, but is followed by another occurance of the “Please…treatment” text to be found. As examples see:
Please E-mail .............. treatment (a <p........> string)Please E-mail ............treatment (a <p........> string)Please E-mail ............treatment Please find attached ............travel Please E-mail ............treatment Please E-mail ............find me Please E-mail ............treatment
Note there are 2 situations in the above example where “Please” is followed by something other than the text required. My solution will prevent an incorrect capture to occur.
Find What:
(?-s)Please(.+)?\R?E-mail((.+)?\R?){1,2}treatment
Replace With:<b>${0}</b>
So the OP can understand the regex:
(?-s)
= do not allow any.
to include the CR and LF (carriage return and line feed)
Please(.+)?\R?
= Find “Please” followed by possibly some characters excluding CR and LF, and then maybe a CR and LF
E-mail((.+)?\R?){1,2}
= Find “E-mail” followed by possibly some characters excluding the CR and LF and then possibly a CR and LF, allowing this set to occur once or twice. I haven’t fully tested but{2}
maybe OK as well.
treatment
= complete the selection with the word “treatment”
and in the Replacement field the${0}
refers to everything that has been found/selected.Of course if the OP’s files will ONLY ever include the word “Please” once there isn’t a reason for them to return to read this.
Terry
-
Hi, @terry-r,
Of course, in absolute terms, you’re quite right about it ! But I would say that people are responsable of what they write !
My regex finds a word
Please
, followed later with the nearest wordE-mail
, followed later with the nearest wordtreatment
If, because of some typos, one or several of these
3
words are truncated or modified in any way, due to the initial(?s)
modifier, the regex engine will always try to find out, by all means, a match, if any !Note that I suppose a possible variation by telling, in my previous post : " Check the
Mach case
option, if necessary "
Thus :
-
Any malformed word is just considered as stuff, part of the regex part
.+?
-
And for the smallest range of characters containing these
3
words in that order (Please ... E-mail .... treatment
) :-
A
<b>
string is inserted before the first wordPlease
-
A
</b>
string is inserted after the final wordtreatment
-
No more, no less !
BR
guy038
-