06c09073b3
Seven releases since the last import, so the ChangeLog is quite big; please refer to the NEWS file included in the import for details. Among others, this also addresses PR 23054.
6 lines
101 B
Awk
6 lines
101 B
Awk
BEGIN {
|
|
a[1] = "elephantie"
|
|
a[2] = "e"
|
|
print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
|
|
}
|