I have a line of text on an input file as:
I want to create, as a CSV file:
1024,("/oracledata/IFSL/control01.ctl","/oracleindex/IFSL/control02.ctl","/oracledata/IFSL/control03.ctl"), 100
As three columns when opened in Excel.
Now, the , in the middle column is going to cause problems, ordinarily catered for with enclosing it in "". But this line has that as part of it's actual value!
Any ideas? Please.
Applications Support
UK
Code:
db_files = 1024
control_files = ("/oracledata/IFSL/control01.ctl","/oracleindex/IFSL/control02.ctl","/oracledata/IFSL/control03.ctl")
open_cursors = 100
I want to create, as a CSV file:
1024,("/oracledata/IFSL/control01.ctl","/oracleindex/IFSL/control02.ctl","/oracledata/IFSL/control03.ctl"), 100
As three columns when opened in Excel.
Now, the , in the middle column is going to cause problems, ordinarily catered for with enclosing it in "". But this line has that as part of it's actual value!
Any ideas? Please.
Applications Support
UK