Learning ActionScript 2.0 in Adobe Flash |
|
|
|
| Working with Text and Strings > About strings and the String class > About the escape character | |||
You can use the backslash escape character (\), to define other characters in string literals.
|
Escape sequence |
Description |
|---|---|
|
|
The backspace character. |
|
|
The form feed character. |
|
|
The newline character. |
|
|
The carriage return. |
|
|
The tab character. |
|
|
The Unicode character with the character code specified by the hexadecimal number nnnn. For example, |
|
|
The ASCII character with the character code specified by the hexadecimal number nn. |
|
|
A single quotation mark. |
|
|
A double quotation mark. |
|
|
A single backslash character. |
For more information on string literals, see About literals and Creating strings.
|
|
|
|