资 源 简 介
News
Added support for [..] regular operator.
```
RegEx re;
re.Compile("ab[0-9]");
bool match = re.Match("ab0");
re.Compile("XYZ[aeiou]");
match = re.Match("XYZa");
```
1.0 is released, if you find any issue using this, please submit a defect .
## How to build ##
Checkout the library using
hg clone https://regex.googlecode.com/hg/ regex
For Windows Visual Studio Solution files are available in win directory.
For Unix run makefile from the root directory.
Usage
RegEx re; re.Compile("(a|b)*"); bool match = re.Match("a"); match = re.Match("b")); match = re.Match ("aa"); match = re.Match ("ab");
This library support basic regular expression operator `*`, |, +, (, ), ?.<