Text
You can use the class identifier Text as a synonym for the identifier String, for example, in coercions:
"A string" as string = "A string" as text --result: trueHowever, the class of a string is alwaysstring
:
class of "A string" as text --result: stringUnlike the class identifier Number (which is a synonym for either Real or Integer) or Styled Text (which denotes a string that includes font and style information), the class identifier Text is precisely equivalent to a single class identifier--String.