Search found 4 matches

by amenzl
Thu Feb 26, 2009 11:28 pm
Forum: Advanced Find and Replace
Topic: Insert file contents into another file
Replies: 3
Views: 13653

Re: Insert file contents into another file

Well, I did have to edit the original files, but had the same issue when redesigning another site. I was able to figure out how to merge the contents of one file into the other. I was working with html files and text files. Here is what I did: In the html files to update I found the common spot for ...
by amenzl
Mon Jan 05, 2009 10:32 pm
Forum: Advanced Find and Replace
Topic: Insert file contents into another file
Replies: 3
Views: 13653

Insert file contents into another file

I have many html files (over 3500+) which need to be updated due to the fact my original data was corrupted and I did not notice this until after I had manually inserted the data on every file. This took me almost eight days to complete. Now that I have the correct data located in new files (txt fil...
by amenzl
Mon Dec 11, 2006 7:31 pm
Forum: Advanced Find and Replace
Topic: Find/replace prices between certain values
Replies: 3
Views: 11082

This works great Roman! I only needed to use the second string to accomplish the update (Search=\$(\d*\.\d+) Replace=$<%=IFF(($1>=15.25) AND ($1<=19.75),14.00,IFF(($1>=0.75) AND ($1<=0.99),0.50,$1))=%) However, I'm going to complicate the issue. Each page I'm updating has three products. The first t...
by amenzl
Mon Dec 11, 2006 5:29 am
Forum: Advanced Find and Replace
Topic: Find/replace prices between certain values
Replies: 3
Views: 11082

Find/replace prices between certain values

I am trying to figure out how to find and replace prices between certain values. A couple examples: If product price is between (including equal to) $15.25 to $19.75 then change product price to $14.00. If product price is between (including equal to) $.75 to $.99 then change product price to $.50. ...