Contents
string
what is
- a read-only slice of bytes;
-
a strings can hold arbitrary byte sequence, even they are not always valid UFT-8 byte sequence for:
const sample = "\xbd\xb2\x3d\xbc\x20\xe2\x8c\x98"
will print mess;��=� ⌘
-
A string literal, absent byte-level escapes, always holds valid UTF-8 sequences.
-
java use uft-16
internal implement
|
|
back quote vs double quote
-
back quote: will not escape characters
-
double quote: will escape characters
escape
an character is a character that invokes an alternative interpretation on subsequent characters in a character sequence
Value Description \a Alert or bell \b Backspace \ Backslash \t Horizontal tab \n Line feed or newline \f Form feed \r Carriage return \v Vertical tab ' Single quote (only in rune literals) " Double quote (only in string literals)