string - Using Applescript to parsing this paragraph -


have know how convert paragraphs

173.252.100.26 abc.com 173.252.100.26 xyz.com 173.252.100.26 uio.com 

to

\\n173.252.100.26\\abc.com\\n173.252.100.26\\xyz.com\\n173.252.100.26\\uio.com\\n 

set input "173.252.100.26 abc.com 173.252.100.26 xyz.com 173.252.100.26 uio.com"  set text item delimiters "\\\\n" "\\\\n" & paragraphs of input text & "\\\\n" 

restoring text item delimiters not necessary far know.


Comments