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.
メールを受け取り、ページの div に表示しようとしました。body{background-color: #444}しかし、私が受け取ったメールには、私のページが奇妙に見えるような本文 css が含まれています。bodyCSSからルールを削除しようとしています。スタイルタグhtmlを取得したjsoupを使用しています。唯一の質問は、正規表現でルールを削除するにはどうすればよいですか?
body{background-color: #444}
body
これを試して:
String withoutBody = text.replaceAll("body\\s*\\{.*?\\}", "");
ノート;
{}
?
.*?
}