| 1 | March 2001:
|
|---|
| 2 |
|
|---|
| 3 | It looks like the revised 1003.2 standard will actually follow the
|
|---|
| 4 | rules given below. Hallelujah!
|
|---|
| 5 |
|
|---|
| 6 | October 1998:
|
|---|
| 7 |
|
|---|
| 8 | The 1003.2 work has been at a stand-still for ages. Who knows if or
|
|---|
| 9 | when a new revision will actually happen...
|
|---|
| 10 |
|
|---|
| 11 | August 1995:
|
|---|
| 12 |
|
|---|
| 13 | Although the published 1003.2 standard contained the incorrect
|
|---|
| 14 | comparison rules of 11.2 draft as described below, no actual implementation
|
|---|
| 15 | of awk (that I know of) actually used those rules.
|
|---|
| 16 |
|
|---|
| 17 | A revision of the 1003.2 standard is in progress, and in the May 1995
|
|---|
| 18 | draft, the rules were fixed (based on my submissions for interpretation
|
|---|
| 19 | requests) to match the description given below. Thus, the next version
|
|---|
| 20 | of the standard will have a correct description of the comparison
|
|---|
| 21 | rules.
|
|---|
| 22 |
|
|---|
| 23 | June 1992:
|
|---|
| 24 |
|
|---|
| 25 | Right now, the numeric vs. string comparisons are screwed up in draft
|
|---|
| 26 | 11.2. What prompted me to check it out was the note in gnu.bug.utils
|
|---|
| 27 | which observed that gawk was doing the comparison $1 == "000"
|
|---|
| 28 | numerically. I think that we can agree that intuitively, this should
|
|---|
| 29 | be done as a string comparison. Version 2.13.2 of gawk follows the
|
|---|
| 30 | current POSIX draft. Following is how I (now) think this
|
|---|
| 31 | stuff should be done.
|
|---|
| 32 |
|
|---|
| 33 | 1. A numeric literal or the result of a numeric operation has the NUMERIC
|
|---|
| 34 | attribute.
|
|---|
| 35 |
|
|---|
| 36 | 2. A string literal or the result of a string operation has the STRING
|
|---|
| 37 | attribute.
|
|---|
| 38 |
|
|---|
| 39 | 3. Fields, getline input, FILENAME, ARGV elements, ENVIRON elements and the
|
|---|
| 40 | elements of an array created by split() that are numeric strings
|
|---|
| 41 | have the STRNUM attribute. Otherwise, they have the STRING attribute.
|
|---|
| 42 | Uninitialized variables also have the STRNUM attribute.
|
|---|
| 43 |
|
|---|
| 44 | 4. Attributes propagate across assignments, but are not changed by
|
|---|
| 45 | any use. (Although a use may cause the entity to acquire an additional
|
|---|
| 46 | value such that it has both a numeric and string value -- this leaves the
|
|---|
| 47 | attribute unchanged.)
|
|---|
| 48 |
|
|---|
| 49 | When two operands are compared, either string comparison or numeric comparison
|
|---|
| 50 | may be used, depending on the attributes of the operands, according to the
|
|---|
| 51 | following (symmetric) matrix:
|
|---|
| 52 |
|
|---|
| 53 | +----------------------------------------------
|
|---|
| 54 | | STRING NUMERIC STRNUM
|
|---|
| 55 | --------+----------------------------------------------
|
|---|
| 56 | |
|
|---|
| 57 | STRING | string string string
|
|---|
| 58 | |
|
|---|
| 59 | NUMERIC | string numeric numeric
|
|---|
| 60 | |
|
|---|
| 61 | STRNUM | string numeric numeric
|
|---|
| 62 | --------+----------------------------------------------
|
|---|
| 63 |
|
|---|
| 64 | So, the following program should print all OKs.
|
|---|
| 65 |
|
|---|
|
|---|