Public Methods | |
const cmt_regexp::iterator | match (const cmt_string& text, int pos) const |
|
Reimplemented from cmt_node. Definition at line 436 of file cmt_regexp.cxx. 00438 { 00439 if ((pos < 0) | (pos >= text.size ())) 00440 { 00441 return (cmt_regexp::iterator::null ()); 00442 } 00443 00444 return (cmt_regexp::iterator (pos, 1)); 00445 } |