我需要提取用<strong>
標籤包裝的URL。這是一個簡單的正則表達式,但我不知道如何在shell腳本中這樣做。下面是例子:使用正則表達式在shell腳本中從字符串中提取url
line="<strong>http://www.example.com/index.php</strong>"
url=$(echo $line | sed -n '/strong>(http:\/\/.+)<\/strong/p')
我需要 「http://www.example.com/index.php」 在$url
變量。
使用busybox。