Remove/Replace everything between two strings?
-
I have several hundred lines of the following:
‘<div id=“bodyContent”>’+
‘<p>After construction began in …</p>’ +
‘<p><a href=“http://www.com”></p>’ +
I need all of the middle content removed but for all several hundred listings.
So:
‘<div id=“bodyContent”>’+
REMOVE ALL OF THIS FOR EVERY INSTANCE
‘<p><a href=“http://www.com”></p>’ +
-
We could come up with a regex based on that sketchy description, but then you’d tell us it didn’t work, and we’d have to drag it out of you what your data really looks like, and we’d all waste a lot of our time with the back and forth. If instead, you give us a clear before and after for the text, and reasonable description of the match, using the forum’s tools for marking up code/plaintext so that we know what the data really looks like, rather than trying to guess how the forum mangled it, there’s a much better chance of first-pass success. See my boilerplate below, especially the forum where it circles the button you have to hit to mark text as code/plaintext, and where it describes my mental process: give us the first half of step #3.
-----
Please Read And Understand This
FYI: I often add this to my response in regex threads, unless I am sure the original poster has seen it before. Here is some helpful information for finding out more about regular expressions, and for formatting posts in this forum (especially quoting data) so that we can fully understand what you’re trying to ask:
This forum is formatted using Markdown. Fortunately, it has a formatting toolbar above the edit window, and a preview window to the right; make use of those. The
</>
button formats text as “code”, so that the text you format with that button will come through literally ; use that formatting for example text that you want to make sure comes through literally, no matter what characters you use in the text (otherwise, the forum might interpret your example text as Markdown, with unexpected-for-you results, giving us a bad indication of what your data really is). Images can be pasted directly into your post, or you can hit the image button. (For more about how to manually use Markdown in this forum, please see @Scott-Sumner’s post in the “how to markdown code on this forum” topic, and my updates near the end.) Please use the preview window on the right to confirm that your text looks right before hitting SUBMIT. If you want to clearly communicate your text data to us, you need to properly format it.If you have further search-and-replace (“matching”, “marking”, “bookmarking”, regular expression, “regex”) needs, study the official Notepad++ searching using regular-expressions docs, as well as this forum’s FAQ and the documentation it points to. Before asking a new regex question, understand that for future requests, many of us will expect you to show what data you have (exactly), what data you want (exactly), what regex you already tried (to show that you’re showing effort), why you thought that regex would work (to prove it wasn’t just something randomly typed), and what data you’re getting with an explanation of why that result is wrong. When you show that effort, you’ll see us bend over backward to get things working for you. If you need help formatting, see the paragraph above.
Please note that for all regex and related queries, it is best if you are explicit about what needs to match, and what shouldn’t match, and have multiple examples of both in your example dataset. Often, what shouldn’t match helps define the regular expression as much or more than what should match.
Here is the way I usually break down trying to figure out a regex (whether it’s for myself or for helping someone in the forum):
- Compare what portions of each line I want to match is identical to every other one (“constants”), and what parts do I want to allow to be different in each line (“variables”) but still be part of the match.
- Look at both the variables and constants, and see what portions of each I’ll want to keep or move around, vs which parts get thrown away completely. Each sub-component that I want to keep will be put in a regex group. Anything that gets completely thrown away doesn’t need to be in a group, though sometimes I put it in a numbered
(___)
or unnumbered(?:___)
group anyway, if I have a good reason for it. Anything that needs to be split apart, I break into multiple groups, instead of having it as one group.
- For each group, I do a mental “how would I describe to my son how to correctly match these characters?” – which should hopefully give me a simple, foolproof algorithm of characters that must match or must not match; then I ask, “how would I translate those instructions into regex sequences?” If I don’t know the answer to the second, I read documentation, or ask a specific question.
- try it, debug, iterate.
-
‘<div id=“bodyContent”>’+ ‘<p>After construction began in …</p>’ + ‘<p><a href=“http://www.com”></p>’ +
remove =
‘<p>After construction began in …</p>’ +
from:
‘<div id=“bodyContent”>’+ ‘<p><a href=“http://www.com”></p>’ +
-
Since you assure us that’s what your data looks like:
‘<div id=“bodyContent”>’+ ‘<p>After construction began in …</p>’ + ‘<p><a href=“http://www.com”></p>’ +
will become
‘<div id=“bodyContent”>’+ ‘<p><a href=“http://www.com”></p>’ +
using the regex
- FIND =
(\Q‘<div id=“bodyContent”>’+\E\R+)(?s:.*?)(\R+\Q‘<p><a href=“http://www.com”></p>’ +\E)
- REPLACE =
$1$2
If your data doesn’t actually have smart quotes, you will need to fix the quotes used in the regex. Good luck.
- FIND =
-
THANK YOU. Worked perfect. Thank you thank you