Previous | Index | Next |
String manipulation methods
encodedHexFrom:
Encodes characters outside ASCII 32-126 in hexadecimal form (HHHH;)
+ (id)encodedHexFrom:(id)listOrString
listOrString = a string or list of strings
If passed a string, returns the encoded string; if passed a list, an array of encoded strings.
Version 1.0.0
use scripting additions
use framework "Foundation"
use script "BridgePlus"
load framework
set aString to "café à Paris"
set theResult to current application's SMSForder's encodedHexFrom:aString
ASify from theResult
--> "café à Paris"
theResult as text
--> "café à Paris"