WolframLang: String

By Xah Lee. Date: . Last updated: .

A string is a sequence of characters.

Quote String

String is quoted by double straight quote.

"this is a string"

string can be multi-line, can include any unicode characters:

x = "i ♥ cats
and dogs"

String Escapes

\n

newline char in string.

\t

tab char in string.

\"

double quote in string.

"this is\na string"

"Said \"Yes\""

WolframLang String