Doxygen
regex.h 文件参考
#include <memory>
#include <string>
#include <vector>
#include <iterator>
+ regex.h 的引用(Include)关系图:
+ 此图展示该文件直接或间接的被哪些文件引用了:

浏览源代码.

class  reg::Ex
 Class representing a regular expression. 更多...
 
class  reg::SubMatch
 Object representing the match results of a capture range. 更多...
 
class  reg::Match
 Object representing the matching results. 更多...
 
class  reg::Iterator
 Iterator class to iterator through matches. 更多...
 

命名空间

 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. 更多...