kregexp.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __kregexp_h__
00019 #define __kregexp_h__
00020
00021 class KRegExpPrivate;
00022
00054 class KRegExp
00055 {
00056 public:
00057
00061 KRegExp();
00062
00069 KRegExp( const char *_pattern, const char *_mode = "" );
00070 ~KRegExp();
00071
00079 bool compile( const char *_pattern, const char *_mode = "" );
00080
00086 bool match( const char *_string );
00087
00088
00100 const char *group( int _grp );
00101
00108 int groupStart( int _grp );
00116 int groupEnd( int _grp );
00117
00118 private:
00119 KRegExpPrivate *m_pPrivate;
00120 };
00121
00122
00123 #endif
This file is part of the documentation for kdelibs Version 3.1.5.