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.
asRuleValue は[^0-9a-zA-Z"'-.#, ]
[^0-9a-zA-Z"'-.#, ]
Pattern classPattern = Pattern.compile(asRuleValue, Pattern.CASE_INSENSITIVE); Matcher m = classPattern.matcher(asValue); if (!m.find()) { lbFlag = true; }
()ここで何が間違っているのかなど、いくつかのシナリオでは正しく機能していませんか?
()
-文字クラスでエスケープするか、最後に配置する必要があります。
-
使用する:
[^0-9a-zA-Z"'.#, -]
'それ以外の場合は、 からまでの文字範囲を作成し.ています。()*+,
'
.
()*+,