#include <list>
#include <sstream>
#include <string>
#include "Array.h"
#include "Matrix.h"
#include "base-list.h"
#include "str-vec.h"
Go to the source code of this file.
Classes | |
class | regexp::match_data |
class | regexp::match_element |
struct | regexp::opts |
class | regexp |
Functions | |
bool | is_regexp_match (const std::string &pat, const std::string &buffer, const regexp::opts &opt=regexp::opts(), const std::string &who="regexp") |
Array< bool > | is_regexp_match (const std::string &pat, const string_vector &buffer, const regexp::opts &opt=regexp::opts(), const std::string &who="regexp") |
regexp::match_data | regexp_match (const std::string &pat, const std::string &buffer, const regexp::opts &opt=regexp::opts(), const std::string &who="regexp") |
std::string | regexp_replace (const std::string &pat, const std::string &buffer, const std::string &replacement, const regexp::opts &opt=regexp::opts(), const std::string &who="regexp") |
bool is_regexp_match | ( | const std::string & | pat, | |
const std::string & | buffer, | |||
const regexp::opts & | opt = regexp::opts () , |
|||
const std::string & | who = "regexp" | |||
) | [inline] |
Definition at line 248 of file regexp.h.
References regexp::is_match().
Referenced by name_matches_any_pattern().
Array<bool> is_regexp_match | ( | const std::string & | pat, | |
const string_vector & | buffer, | |||
const regexp::opts & | opt = regexp::opts () , |
|||
const std::string & | who = "regexp" | |||
) | [inline] |
Definition at line 259 of file regexp.h.
References regexp::is_match().
regexp::match_data regexp_match | ( | const std::string & | pat, | |
const std::string & | buffer, | |||
const regexp::opts & | opt = regexp::opts () , |
|||
const std::string & | who = "regexp" | |||
) | [inline] |
std::string regexp_replace | ( | const std::string & | pat, | |
const std::string & | buffer, | |||
const std::string & | replacement, | |||
const regexp::opts & | opt = regexp::opts () , |
|||
const std::string & | who = "regexp" | |||
) | [inline] |
Definition at line 270 of file regexp.h.
References regexp::replace().
Referenced by octregexprep().