Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: 正規表現は、XHTML の自己完結型タグを除く開始タグに一致します
<a href="http://abc.com/abc.htm" style="color:#005F9A;">I need it</a>
「必要です」という文を取得するにはどうすればよいですか? 正規表現を使いたい...
必要なものを抽出するために使用できる正規表現パターンは次のとおりです。
(?<=\<a\shref=.*?\>).*?(?=\<\/a\>)