Backslash escape characters Flashcards
Show how to express this in backslash-escape style.
tab
\t
Show how to express this in backslash-escape style.
newline
\n
Show how to express this in backslash-escape style.
carriage return
\r
Show how to express this in backslash-escape style.
form feed
\f
Show how to express this in backslash-escape style.
backspace
\b
Show how to express this in backslash-escape style.
bell
\a
Show how to express this in backslash-escape style.
escape (ASCII)
\e
Show how to express this in backslash-escape style.
whitespace
\s
Show how to express this in backslash-escape style.
any character as an octal value
\nnn (e.g. \000)
Show how to express this in backslash-escape style.
any character as a hexadecimal value
\xnn (e.g. \x7f)
Show how to express this in backslash-escape style.
any ASCII control character
\cx or \C-x (examples of Control-X)
Show how to express this in backslash-escape style.
any meta character
\M-x (example of Meta-X)
Show how to express this in backslash-escape style.
any meta-control character
\M-\C-x (example of Meta-Control-X)