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.
HTMLタグを除くすべての文字列/テキストを取得しようとしています。元。
<html><head><title>test</title></head><body><p>hi there</p></body></html> --> "test hi there"
最初に、すべての html タグを検索する正規表現を作成しようとしました: (<.*?>). その後、正規表現を反転しようとしました((?!<.*?>).)*が、この式は機能しません:(誰か助けてもらえますか?
(<.*?>)
((?!<.*?>).)*