Just write a function for
this:
on
ReplaceText(theString,fString,rString)
set current_Delimiters to
applescript's text item delimiter
set applescript's text item
delimiters to fString
set sList to every text item
of theString
set applescript's text item
delimiters to rString
set newString to sList as
string
set applescript's text item
delimiters to current_Delimiters
return newString
end ReplaceText
set vbcrlf = ascii character(13) &
ascii character(10)
strString = "Hello^Mum"
strString = ReplaceText(strString, "^", vbcrlf) of
me