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.
我是Pattern在 Java 中使用该类的新手,并且似乎找不到在创建模式时如何使用 or 函数的示例。
Pattern
我需要使用模式的分隔符,所以我的三个分隔符将是:/,-和新行\n。我将如何实现这一点来创建这样的模式:
/
-
\n
Pattern p = Pattern("/"|"/"|\n);
您可以将此模式与character class:
character class
Pattern p = Pattern.compile("[-/\\n]");
阅读更多关于正则表达式