Go to the first, previous, next, last section, table of contents.


Numeric and String Constants

A numeric constant stands for a number. This number can be an integer, a decimal fraction, or a number in scientific (exponential) notation.(7) Here are some examples of numeric constants, which all have the same value:

105
1.05e+2
1050e-1

A string constant consists of a sequence of characters enclosed in double-quote marks. For example:

"parrot"

represents the string whose contents are `parrot'. Strings in gawk can be of any length and they can contain any of the possible eight-bit ASCII characters including ASCII NUL (character code zero). Other awk implementations may have difficulty with some character codes.


Go to the first, previous, next, last section, table of contents.