我想匹配模式,789。仅使用一个 sed 命令。(没有与“-e”链接的多个命令)
规则是匹配第三个传真之后的号码。
echo "fax 123 def fax tel 456 fax 789 fax 976" | sed 's/xxxxxxx/'
使用awk
withfax
作为分隔符:
$ echo "fax 123 def fax tel 456 fax 789 fax ghi" | awk -F'fax ' '{print $4}'
789
与sed
:
$ echo "fax 123 def fax tel 456 fax 789 fax ghi" | sed 's/.*fax \([0-9]\+\).*/\1/'
789
编辑: sed
是基于行的,所以如何使用grep
首先拆分字段:
$ echo "fax 123 def fax tel 456 fax 789 fax 976" | egrep -o 'fax (tel )?[0-9]+'
fax 123
fax tel 456
fax 789
fax 976
然后使用sed
指定哪一行(字段):
$ ... | sed -n '1s/^[^0-9]*//p'
123
$ ... | sed -n '2s/^[^0-9]*//p'
456
$ ... | sed -n '3s/^[^0-9]*//p'
789
我终于使用了如下命令:
echo " fax 123 def fax tel 456 fax 789 fax 012" |
sed -e 's/^\s*fax\s*[0-9a-z]*\s*[a-z0-9]*\s*fax\s*[0-9a-z]*\s*[0-9a-z]*\s*fax\s*\([0-9]*\).*$/\1/'