Hi,

I'm wondering what you all have got out there. I know you have the following:

\t => tab
\n => new line

What do you have more? Anyone got a link to a webpage or a word that I could search for in google to get a list for all those "\" - possibilities. I don't how you name this.

Grtz

Recommended Answers

All 2 Replies

those are Escaped Characters.

sequence meaning

\n linefeed (LF or 0x0A (10) in ASCII) 
\r carriage return (CR or 0x0D (13) in ASCII) 
\t horizontal tab (HT or 0x09 (9) in ASCII) 
\\ backslash 
\$ dollar sign 
\" double-quote 
\[0-7]{1,3} the sequence of characters matching the regular expression is a character in octal notation  
\x[0-9A-Fa-f]{1,2} the sequence of characters matching the regular expression is a character in hexadecimal notation

Thanks a lot mate, well explained!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.