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
#include "kdemacros.h"
00022
00023
class KRegExpPrivate;
00024
00061 class KDE_DEPRECATED KRegExp
00062 {
00063
public:
00064
00068 KRegExp();
00069
00076 KRegExp(
const char *_pattern,
const char *_mode =
"" );
00077 ~KRegExp();
00078
00086
bool compile(
const char *_pattern,
const char *_mode =
"" );
00087
00093
bool match(
const char *_string );
00094
00095
00107
const char *group(
int _grp );
00108
00115
int groupStart(
int _grp );
00123
int groupEnd(
int _grp );
00124
00125
private:
00126
KRegExpPrivate *m_pPrivate;
00127 };
00128
00129
00130
#endif
This file is part of the documentation for kdecore Library Version 3.3.0.