このタグ内のテキスト「これはタイトルです」を見つけるための正規表現は何ですか? Grep、Sed、または Awk を使用します。
コード例:
<h1 class="round title">
<a href="/somepage">This is the title</a>
</h1>
上記のh1タグでこれを試しました。
curl --silent http://domain.com/index.html | grep "<h1 class=\"round title\">"
結果は次のとおりです。
<h1 class="round title"><a href="/somepage">This is the title</a></h1>
「これはタイトルです」の部分だけが必要です。