aboutsummaryrefslogtreecommitdiff
path: root/src/regex.h
blob: 11ff9f02f0491949080fa8567d19b6327692a88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef BU_REG_EX_H
#define BU_REG_EX_H

#include "bu/fstring.h"

#include <stdint.h>

namespace Bu
{
	class RegEx
	{
	public:
		RegEx();
		RegEx( const Bu::FString &sSrc );
		virtual ~RegEx();

		void compile( const Bu::FString &sSrc );
		int getNumSubStrings();
		bool execute( const Bu::FString &sSrc );
		void getSubStringRange( int nIndex, int &iStart, int &iEnd );
		Bu::FString getSubString( int nIndex );
		const Bu::FString &getSource()
		{
			return sSrc;
		}

	private:
		Bu::FString sSrc;
		Bu::FString sTest;
		void *pRegEx;
		bool bCompiled;
		int nSubStr;
		void *paSubStr;
	};
};

#endif