ubuntu-buildroot/output/build/host-gawk-5.2.0/test/gsubtst4.ok

34 lines
714 B
Plaintext

input 12345
output gsub(/regex/,"x",input)
regex output
(^) x12345
($) 12345x
(^)|($) x12345x
($)|(^) x12345x
(2) 1x345
(^)|2 x1x345
2|(^) x1x345
($)|2 1x345x
2|($) 1x345x
(2)|(^) x1x345
(^)|(2) x1x345
(2)|($) 1x345x
($)|(2) 1x345x
.((2)|(^)) x345
.((^)|(2)) x345
.((2)|($)) x34x
.(($)|(2)) x34x
x{0}((2)|(^)) x1x345
x{0}((^)|(2)) x1x345
x{0}((2)|($)) 1x345x
x{0}(($)|(2)) 1x345x
x*((2)|(^)) x1x345
x*((^)|(2)) x1x345
x*((2)|($)) 1x345x
x*(($)|(2)) 1x345x
x{0}^ x12345
x{0}$ 12345x
(x{0}^)|2 x1x345
(x{0}$)|2 1x345x