I have multiple replace methods (I mean around 200 replace commands all nested in for loops). But some replace methods don't work at all. I am looping through the file using a For loop:
for(i=0; i<file.length; i++) {
but some replace methods are being ignored. Is there a reason why some methods are being ignored and some aren't?
EDIT1: I'm trying to replace multiple strings in a file.
file[i].replace(str1, str2)
file[i].replace(str3, str4)
file[i].replace(str5, str6)
file[i].replace(str7, str8)
file[i].replace(str9, str10)
...
and so on...
Here's the code:
Click here!
fileis initialized. We have no idea why you're working on an entire array of filenames or file contents rather than one at a time. We have no idea howstr1andstr2are initialized. We're not sitting there with you :) and we can't debug anything with what we can see here. – sarnold Jun 1 '11 at 2:50