|
| static bool | reg::isspace (char c) |
| |
| static bool | reg::isalpha (char c) |
| |
| static bool | reg::isdigit (char c) |
| |
| static bool | reg::isalnum (char c) |
| |
| static std::string | reg::wildcard2regex (const std::string &pattern) |
| |
| 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. 更多...
|
| |