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.
次のコードを使用して電話番号+記号を空白に置き換えると、例外が生成されます
コード:
phonenum.replaceAll("+","");
例外:
java.util.regex.PatternSyntaxException: Syntax error U_REGEX_RULE_SYNTAX near index 1:
私を助けてください。
このメソッドは正規表現を使用しているようです。有効な正規表現ではないreplaceAllため失敗すると思います。何かを繰り返す必要があります。++
replaceAll
+
phonenum.replaceAll("\\+","")代わりに、それをエスケープして、リテラル「+」と一致させてみてください。
phonenum.replaceAll("\\+","")
What's wrong with this?
$('tbody').on('click', '.expand', function () { var $button = $(this); var chart = $button.closest('tr').attr('chart'); $('tr[c