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.
我在 C++ 中移植 Java 代码,其中 Java 代码一直在使用 Pattern 类来解析正则表达式。任何人都知道 C++ 中的任何库或开源用于正则表达式作为 Java 的替代品吗?我正在寻找Linux。
谢谢
标准库包含正则表达式功能。Boost库通常被认为质量非常高。Boost.regex库处理正则表达式。您可以只使用那个,而不必包含所有单独的 Boost 库。