I am writing to a text file delimited by a "|". I have used the export command
export delimiter "|"
field 1
field 2
...
However this does put quotes around some of the data because of standard form. I went ahead and used a put statement but unfortunately this becomes anoying when a "|" has to go after every field. Becomes tedious when you have 135 fields.
put stream Name unformatted
field 1 "|"
field 2 "|"
...
My question, is there a way to use the EXPORT function so the quotes are not there or is there a way to use the PUT funtion so I do not have to put in all those "|". Or maybe there is another way? Thanks.
export delimiter "|"
field 1
field 2
...
However this does put quotes around some of the data because of standard form. I went ahead and used a put statement but unfortunately this becomes anoying when a "|" has to go after every field. Becomes tedious when you have 135 fields.
put stream Name unformatted
field 1 "|"
field 2 "|"
...
My question, is there a way to use the EXPORT function so the quotes are not there or is there a way to use the PUT funtion so I do not have to put in all those "|". Or maybe there is another way? Thanks.