Can your program do this?
Posted: Wed Aug 27, 2008 9:45 pm
I have a website with thousands of pages and most all the pages are very very similar in structure.
I want to add a few lines of code to the same section of each page that may need to "bump" the rest of the html downway, thus adding to the total number of html lines on the page.
For example, I have this on my site:
<html line 1>
<html line 2>
<html line 3>
<html line 4>
<html line 5>
And I want to add this between html line 3 and html line 4:
<new html line 1>
<new html line 2>
So I want it to look like this:
<html line 1>
<html line 2>
<html line 3>
<new html line 1>
<new html line 2>
<html line 4>
<html line 5>
Not this:
<html line 1>
<html line 2>
<new html line 1>
<new html line 2>
<html line 5>
Can your program do this? I mean, do a find/replace without replacing, just adding (thus adding to the total number of lines)?
I want to add a few lines of code to the same section of each page that may need to "bump" the rest of the html downway, thus adding to the total number of html lines on the page.
For example, I have this on my site:
<html line 1>
<html line 2>
<html line 3>
<html line 4>
<html line 5>
And I want to add this between html line 3 and html line 4:
<new html line 1>
<new html line 2>
So I want it to look like this:
<html line 1>
<html line 2>
<html line 3>
<new html line 1>
<new html line 2>
<html line 4>
<html line 5>
Not this:
<html line 1>
<html line 2>
<new html line 1>
<new html line 2>
<html line 5>
Can your program do this? I mean, do a find/replace without replacing, just adding (thus adding to the total number of lines)?