Do manual do Gawk
patsplit(string, array, fieldpat, seps)
Divide
string
into pieces defined byfieldpat
and store the pieces inarray
and the separator strings in theseps
array.
É correto que
patsplit
encontra as correspondências mais à esquerda, mais longas e não sobrepostas da expressão regular fieldpat
na string string
e armazena a
corresponde em array
?
As strings em seps
são criadas removendo as strings em array
de string
?
Do manual do Gawk
split(string, array, fieldsep, seps)
Divide
string
into pieces separated byfieldsep
and store the pieces inarray
and the separator strings in theseps
array.
É correto que
split
encontra as correspondências mais à esquerda, mais longas e não sobrepostas da expressão regular fieldsep
na string string
e armazena a
corresponde em seps
?
As strings em array
são aquelas criadas removendo as strings em seps
de string
?
Obrigado