#include <iosfwd>
#include <string>
#include <regex.h>
#include <zypp-core/base/Exception.h>
Go to the source code of this file.
|
| namespace | zypp |
| | Easy-to use interface to the ZYPP dependency resolver.
|
| namespace | str |
| | String related utilities and Regular expression matching.
|
| namespace | zypp::str |
| | Provide print[f] and sprint[f] functions based on JoinFormat.
|
|
| bool | zypp::str::regex_match (const char *s, smatch &matches, const regex ®ex) ZYPP_API |
| | Regular expression matching.
|
| bool | zypp::str::regex_match (const std::string &s, smatch &matches, const regex ®ex) |
| | Regular expression matching. relates: regex \ingroup ZYPP_STR_REGEX
|
| bool | zypp::str::regex_match (const char *s, const regex ®ex) ZYPP_API |
| | Regular expression matching. relates: regex \ingroup ZYPP_STR_REGEX
|
| bool | zypp::str::regex_match (const std::string &s, const regex ®ex) |
| | Regular expression matching. relates: regex \ingroup ZYPP_STR_REGEX
|
| std::string | zypp::str::regex_substitute (const std::string &s, const regex ®ex, const std::string &replacement, bool global=true) ZYPP_API |
| | Replaces the matched regex with the string passed in replacement.
|
| std::ostream & | zypp::str::operator<< (std::ostream &str, const regex &obj) |
| | relates: regex Stream output
|