- 论坛徽章:
- 145
|
回复 1# listenxu
refer to 2L that yestreenstars said
it will be issue if you try the pattern with [0--9]
$ echo a1b2c3 | sed 's/[0-9]/x/g'
axbxcx
$ echo a1b2c3 | sed 's/[0--9]/x/g'
sed: -e expression #1, char 12: Invalid range end
$ echo 123 | grep "[0-9]"
123
$ echo a1b2c3 | grep "[0--9]"
grep: Invalid range end
$ echo a1b2c3 | awk -F"[0-9]" '{print NF}'
4
$ echo a1b2c3 | awk -F"[0--9]" '{print NF}'
awk: fatal: Invalid range end: /[0--9]/
when you use the pattern N to M, [N-M], the M must be greater than the N in ASCII code.
[0-9]
N = "0" = ASCII 0x30
M = "9" = ASCII 0x39
the 0x39("9") is greater than 0x30("0"), it's OK
[0--9]
N = "0" = ASCII 0x30
M = "-" = ASCII 0x2D
the 0x2D("-") isn't greater than 0x30("0"), it's will be issue
$ echo a1b2c3 | sed 's/[0-z]/x/g'
xxxxxx
|
|