Does anyone know what the AppleScript ref is for CRLF in a Windows file is?
Changing TIDs with standard Apple text files using either return or "
"
works but cannont strip them out of this windows file. I actually want to replace them with commas but thats the easy bit!!
set inputText to "whatever containing CRLFs"
set applescript's text item delimiters to return & (ascii character 10)
set outputText to inputText's text items
set applescript's text item delimiters to "," --> or whatever
set outputText to outputText as text
set applescript's text item delimiters to {""}
outputText --> inputText, replacing crlfs with commas.