Escape Characters list : Escape Characters « String « Ruby

Ruby
1. ActiveRecord
2. Array
3. CGI
4. Class
5. Collections
6. Database
7. Date
8. Design Patterns
9. Development
10. File Directory
11. GUI
12. Hash
13. Language Basics
14. Method
15. Network
16. Number
17. Rails
18. Range
19. Reflection
20. Statement
21. String
22. Threads
23. Time
24. Tk
25. Unit Test
26. Windows Platform
27. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Ruby » String » Escape Characters 
Escape Characters list


Backslash notation  Hexadecimal character   Description
\a                  0x07                    Bell or alert
\b                  0x08                    Backspace
\cx                                         Control-x
\C-x                                        Control-x
\e                  0x1b                    Escape
\f                  0x0c                    Formfeed
\M-\C-x                                     Meta-Control-x
\n                  0x0a                    Newline
\nnn                                        Octal notation, where n is in the range 0-7
\r                  0x0d                    Carriage return
\s                  0x20                    Space
\t                  0x09                    Tab
\v                  0x0b                    Vertical tab
\x                                          Character x
\xnn                                        Hexadecimal notation, where n is in the range 0-9, a-f, or A-F

 
Related examples in the same category
1. Escape a single quote
2. Escape backslash
3. Put a string with control character
4. Check the length of a string which has the control character inside
5. Representing Unprintable Characters
6. Escape sequence and hex number
7. Construct a string from hex value
8. String operation on escape char
9. Tab key in double quotation
10. Use Tab key in {}
11. use tab key in %Q{}
12. Tab key in single quotation mark
13. tab key in %q{}
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.