Next: Changes Between SVR4 and POSIX awk, Previous: Major Changes Between V7 and SVR3.1, Up: The Evolution of the awk Language [Contents][Index]
The System V Release 4 (1989) version of Unix awk added these features
(some of which originated in gawk):
ENVIRON array (see Predefined Variables)
srand() built-in function
(see Numeric Functions)
toupper() and tolower() built-in string functions
for case translation
(see String-Manipulation Functions)
printf function
(see Format-Control Letters)
"%*.*d")
in the argument list of printf and sprintf()
(see Format-Control Letters)
/foo/, as expressions, where
they are equivalent to using the matching operator, as in ‘$0 ~ /foo/’
(see Using Regular Expression Constants)