我会认为这两个调用sed
会返回相同的输出,因为默认情况下它会以贪婪的方式查找模式。为什么不?
$ echo '<a href="/topic/null-hypothesis/" data-sc="text link:topic link">Null hypothesis</a>' | grep -E '<a href="/topic.*</a>' | sed 's/<a href=.*">//'
Null hypothesis</a>
$ echo '<a href="/topic/null-hypothesis/" data-sc="text link:topic link">Null hypothesis</a>' | grep -E '<a href="/topic.*</a>' | sed 's/<a href=.*>//'
PS:
$ bash --version
bash --version
GNU bash, version 4.4.19(1)-release (x86_64-pc-linux-gnu)
PS2:我从 更正sed
为grep
。
PS3:改回grep
为sed
。
我在这里没有看到任何违规行为。
">
由 结尾匹配link">
,但不是由 结尾</a>
匹配,后者由 just 匹配>
。