fusionplant.com


UTC 16:17:25
Tuesday
10/22/2024



October 2024
SuMoTuWeThFrSa 
  12345 
6789101112 
13141516171819 
20212223242526 
2728293031   
        
Calendar Tool

welcome

Perl Escape Codes



Double-quoted string backslash escape codes
\n = Newline or unix line feed. Same as \012 (oct)
\r = Return or \015
\t = tab
\f = formfeed
\b = backspace
\a = bell
\e = escape (ASCII escape character)
\0** = any octal ASCII value. the first 0 is for oct.
\x** = any hex ASCII value. the first x is for hex.
\c* = any control character. same as holding control key and pressing a key. c for control.
\\ = backslash
\" = double quote
\l = make next letter lowercase
\L = make letters lowercase until \E
\u = make next letter uppercase
\U = make letters uppercase until \E
\Q = quote non-word characters by adding a backslash until \E
\E = Terminate \L, \U, or \Q