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.
"~ s/\n|\s+|.*?=|;//g;"文字列変数に格納したい。
"~ s/\n|\s+|.*?=|;//g;"
誰でもこれで私を助けることができますか?前もって感謝します。
Java 文字列リテラルで置き換える必要が\あります。https://docs.oracle.com/javase/tutorial/essential/regex/literals.html (下部) を\\参照してください。
\
\\
あれは
String regExp = "~ s/\\n|\s+|.*?=|;//g;";
動作するはずです。