#include <memory>
#include <string>
#include <vector>
#include <iterator>
浏览源代码.
|
| | reg |
| | Namespace for the regular expression functions
|
| |
|
| bool | reg::search (const std::string &str, Match &match, const Ex &re, size_t pos=0) |
| | Search in a given string str starting at position pos for a match against regular expression re. 更多...
|
| |
| bool | reg::search (const std::string &str, const Ex &re, size_t pos=0) |
| | Search in a given string str starting at position pos for a match against regular expression re. 更多...
|
| |
| bool | reg::match (const std::string &str, Match &match, const Ex &re) |
| | Matches a given string str for a match against regular expression re. 更多...
|
| |
| bool | reg::match (const std::string &str, const Ex &re) |
| | Matches a given string str for a match against regular expression re. 更多...
|
| |
| std::string | reg::replace (const std::string &str, const Ex &re, const std::string &replacement) |
| | Searching in a given input string for parts that match regular expression re and replaces those parts by string replacement. 更多...
|
| |