Sujet : Re: "sed" question
De : arnold (at) *nospam* freefriends.org (Aharon Robbins)
Groupes : comp.lang.awkDate : 12. Mar 2024, 20:00:13
Autres entêtes
Organisation : non
Message-ID : <65f0a63c$0$716$14726298@news.sunsite.dk>
References : 1 2 3 4
User-Agent : trn 4.0-test77 (Sep 1, 2010)
In article <
tv26ck-3qt.ln1@ID-313840.user.individual.net>,
Geoff Clare <
netnews@gclare.org.uk> wrote:
POSIX requires that awk uses extended regular expressions (i.e. the
same as regcomp() with REG_EXTENDED).
There is the additional requirement that \ inside [....] can
be used to escape characters, so that [abc\]def] is valid in
awk but not in other uses of REG_EXTENDED.