gpt4 book ai didi

php - 相当于 PHP 的 preg_replace() 的 Shell

转载 作者:可可西里 更新时间:2023-11-01 12:33:54 27 4
gpt4 key购买 nike

大家好。

我正在寻找一种方法来做与 PHP 的 preg_replace() 相同的事情在 shell 脚本中执行(搜索与正则表达式匹配的文本并替换它)。

因此,请考虑以下文件。

<a href="http://example.com/">Website #1</a>
<a href="http://example.net/">Website #2</a>
<a href="http://example.org/">Website #3</a>

我想得到这个:

http://example.com/
http://example.net/
http://example.org/

有没有办法做到这一点?谢谢。

最佳答案

您可以将 sed 用作:

sed -r 's/.*href="([^"]*)".*/\1/' file

See it

关于php - 相当于 PHP 的 preg_replace() 的 Shell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4490927/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com