does anyone know of a program that you can set a directory to, and it goes through all the documents (html's) and deletes certain text you want it to? like a path to an img for example
html help
Collapse
X
-
Tags: None
-
does it do it in batch ??
how do you do it in dreamweaver?
Comment
-
-
edit/find and replace, the rest is pretty foolproof
select if you want to replace in the current document, all .htm* .asp whatever files in a given directory and sub directories, or the defined site in dw settings, choose if you want to replace plain text or source code contents. of course beware there is no undo option for this, so you better be sure about what are you going to replace.
your question was about deleting, so find= (what you want to delete) replace =(nothing), you leave that field blank.
[This message has been edited by Roberto (edited 10-23-2001).]i'm a legend in my spare time.Comment
-
-
personally, I'm a big fan of old school, hardcore, notepad.
I'm a hardcore, hard-coder.
------------------
<A HREF="http://bootybone.com" TARGET=_blank>RedShoe is:
</A>
BoneProne Family Member
SPECIALTY COSTUMES • PROPS • FX
Superheroes • Monsters • Robots
PM for details
For any manufacturing needs. Adult or otherwise.
aka BonsHigh on Insta
Bonsai weed plants
Comment
-
-
Personally i use ultraedit, but how do you perform a search/replace in several files with notepad? dw can be as lame as you want but that search/replace feature is great, even compared to other shareware or freeware programs that do just that (search/replace).
[This message has been edited by Roberto (edited 10-23-2001).]i'm a legend in my spare time.Comment
-
Note Tab Pro http://www.notetab.com
This is like notepad on steroids. Check it out... I have no affiliation with the site but have used and loved this program for years.Comment
-
WTF? A serious thread and it's NOT on page 2 yet? Is this the right board?
Rollin, I use BK Replace 'Em, you can specify entire directories to search & replace at once.
------------------
Plenty of wheat to go around.Comment
-
unix
for files in *.html ; do sed -e s/OLD/NEW/g $file > $file.tmp; mv $file.tmp $file; done
..
do in on your server .. if u have more then 100 files .. to work on it ...
------------------
"Shock your systemadministration! Read manual-pages!"ah you have been blessed with 72 virgins?Comment
-

Comment