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.
私はこの正規表現をしばらく構築してきましたが、これまでのところあまり運がありません。とにかく、正規表現は次の文字をキャッチすることになっています: {}[]+-*/,.();
以下のブール式は、「)」に遭遇した場合を除いて正常に機能します。
atom.matches("\\[\\+\\-\\*/,.\\(\\)\\}\\{\\};");
事前に助けてくれてありがとう
文字クラスを使用する必要があります。
[{}[\]+*/,.()-]
詳細: http://www.regular-expressions.info/charclass.html