libzypp  15.28.6
zypp::str::smatch Class Reference

Regular expression match result. More...

#include <Regex.h>

Public Member Functions

 smatch ()
 
std::string operator[] (unsigned i) const
 
unsigned size () const
 
std::string::size_type begin (unsigned i) const
 Begin index of subexpression i in match_str (or std::string::npos) More...
 
std::string::size_type end (unsigned i) const
 End index of subexpression i in match_str (or std::string::npos) More...
 
std::string::size_type size (unsigned i) const
 Size of subexpression i (or std::string::npos) More...
 

Public Attributes

std::string match_str
 
regmatch_t pmatch [12]
 

Detailed Description

Regular expression match result.

Index n=0 returns the string object representing the character sequence that matched the whole regular expression. If n is out of range, or if n is an unmatched sub-expression, then an empty string is returned.

Definition at line 145 of file Regex.h.

Constructor & Destructor Documentation

smatch::smatch ( )

Definition at line 73 of file Regex.cc.

Member Function Documentation

std::string smatch::operator[] ( unsigned  i) const

Definition at line 78 of file Regex.cc.

unsigned smatch::size ( ) const

Definition at line 95 of file Regex.cc.

std::string::size_type smatch::begin ( unsigned  i) const

Begin index of subexpression i in match_str (or std::string::npos)

Definition at line 86 of file Regex.cc.

std::string::size_type smatch::end ( unsigned  i) const

End index of subexpression i in match_str (or std::string::npos)

Definition at line 89 of file Regex.cc.

std::string::size_type smatch::size ( unsigned  i) const

Size of subexpression i (or std::string::npos)

Definition at line 92 of file Regex.cc.

Member Data Documentation

std::string zypp::str::smatch::match_str

Definition at line 163 of file Regex.h.

regmatch_t zypp::str::smatch::pmatch[12]

Definition at line 164 of file Regex.h.


The documentation for this class was generated from the following files: