< An Awk Primer 
      Numbers
Numbers can be expressed in Awk as either decimal integers or floating-point quantities. For example:
- 789
- 3.141592654
- +67
- +4.6E3
- -34
- -2.1e-2
There is no provision for specifying values in other bases, such as hex or octal; however, as will be shown later, it is possible to output them from Awk in hex or octal format.
Strings
Strings are expressed in double quotes. For example:
- "All work and no play makes Jack a homicidal maniac!"
- "1987A1"
- "do re mi fa so la ti do"
Awk also supports null strings, which are represented by empty quotes:  "".
Like the C programming language, it is possible in Awk to specify a character by its three-digit octal code (preceded by a backslash).
There are various "special" characters that can be embedded into strings:
- \nNewline (line feed)
- \tHorizontal tab (aligns to next column of 8 spaces)
- \bBackspace
- \rCarriage return
- \fForm feed (possibly causes a new page, if printing)
A double-quote (") can be embedded in a string by preceding it with a backslash, and a backslash can be embedded in a string by typing it in twice:  \\.  If a backslash is used with other characters (say, \m), it is simply treated as a normal character.
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.