-3

我想匹配模式,789。仅使用一个 sed 命令。(没有与“-e”链接的多个命令)

规则是匹配第三个传真之后的号码。

echo "fax 123 def fax tel 456 fax 789 fax 976" | sed 's/xxxxxxx/'
4

2 回答 2

2

使用awkwithfax作为分隔符:

$ 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
于 2012-12-28T16:41:18.200 回答
0

我终于使用了如下命令:

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/'
于 2012-12-28T17:53:20.500 回答