Isto não é um erro; é só que o padrão não é claro o suficiente ao tentar codificar a prática existente.
O manual mawk (1) é mais explícito:
split(expr, A, sep)
works as follows:...
(2) If
sep = " "
(a single space), then<SPACE>
is trimmed from the front and back ofexpr
, andsep
becomes<SPACE>
. mawk defines<SPACE>
as the regular expression/[ \t\n]+/
. Otherwisesep
is treated as a regular expression, except that meta-characters are ignored for a string of length 1, e.g.,split(x, A, "*")
andsplit(x, A, /*/)
are the same.
Além disso, o manual do GNU awk do fontes atuais :
split(s, a [, r [, seps] ])
...
Splitting behaves identically to field splitting, described above. In particular, if
r
is a single-character string, that string acts as the separator, even if it happens to be a regular expression metacharacter.
Esta é a descrição do padrão do susv4:
An extended regular expression can be used to separate fields by assigning a string containing the expression to the built-in variable FS, either directly or as a consequence of using the
-F sepstring
option. The default value of the FS variable shall be a single <space>. The following describes FS behavior:
- If FS is a null string, the behavior is unspecified.
If FS is a single character:
a. If FS is <space>, skip leading and trailing <blank> and <newline> characters; fields shall be delimited by sets of one or more <blank> or <newline> characters.
b. Otherwise, if FS is any other character c, fields shall be delimited by each single occurrence of c.
Otherwise, the string value of FS shall be considered to be an extended regular expression. Each occurrence of a sequence matching the extended regular expression shall delimit fields.
Seu exemplo corresponde a 2.b.
Mesmo que isso mencione explicitamente FS
, é o mesmo comportamento com qualquer argumento usado
em vez disso, como o terceiro argumento para split
em todas as implementações do awk, incluindo no caso em que esse argumento é um espaço.
É improvável que o comportamento mude, porque a variável FS
é apenas uma string ( awk
não tem objetos regexp, como javascript
ou perl
; você não pode atribuir um regexp a uma variável, como em a=/./
ou $a=qr/./
); é a função split
(chamada implícita ou explicitamente) que interpreta seu argumento como descrito acima.
A origem desse comportamento pode ser compatível com o awk "antigo", em que FS
(ou o terceiro argumento para split
) sempre foi tratado como um único caractere. Exemplo (no unix v7):
$ awk 'BEGIN{FS="."; print split("foo.bar.baz", a, "bar"); print a[2] }'
3
ar.
$ awk 'BEGIN{FS="."; print split("foo.bar.baz", a, /bar/); print a[2] }'
awk: syntax error near line 1
awk: illegal statement near line 1
Bus error - core dumped