首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C/C++/VC++ > C++中的正则表达式库

C++中的正则表达式库

  • 资源大小:12.37 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签:

资 源 简 介

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 `*`, |, +, (, ), ?.<

文 件 列 表

test
Makefile
tregex.cpp
src
Makefile
regex.cpp
regexpattern.cpp
regexstate.cpp
inc
regex.h
regexpattern.h
regexstate.h
win
regex++.sln
regex++.vcproj
tregex++.vcproj
VIP VIP
0.194213s