1

如果我做

perl -nE'say for m|fullImageLink.+?<a href="(.+?)"|g' tmp

然后我得到

/images/9/92/233-Menu.jpg

是否可以在输出前加上前缀example.com/

4

1 回答 1

2
perl -nE'say q{example.com}, $_ for m|fullImageLink.+?<a href="(.+?)"|g' tmp

如果已经存在域名,将会非常糟糕。

于 2012-07-17T13:22:24.553 回答