I have a file which contains sql statements. Now in this file, I want to add a word "collate" after every 'char()' and 'varchar()' in the file. How do you do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Iterate through the file line by line. On each String do two replaceAll( ... ) using your Strings above. Then write each line into a new File. When done, rename the original file to some back-up name and rename the new file to the original file's name. Edit 1 |
|||