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.
java.lang.String任意の文字を含む可能性のある があります。文字列をサニタイズする簡単な方法はありますか (たとえば、それを実行できる追加のクラスを使用して?)、後でまたはjava.util.regex.Matcher正規表現処理のためにすべての「危険な」文字を削除します (例: $、^ 、...)?
java.lang.String
java.util.regex.Matcher
使用できます
Pattern.quote(string);
正規表現の文字列をエスケープします。