vc6.0 Greta正则表达式应用

本文介绍了如何在Visual C++ 6.0(vc6.0)环境下使用Greta正则表达式库。首先,下载并解压greta-2.6.4-vc6正则表达式库,接着创建Greta工程并编译为静态库lib文件。然后,在新的测试工程Test中引用lib文件,调整include路径和库目录设置,确保编译和链接成功。通过示例代码展示了如何匹配美元金额的正则表达式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

下载 greta-2.6.4-vc6正则表达式.zip,解压后有6个文件:

regexpr2.h  

restack.h  

reimpl2.h 

syntax2.h  

syntax2.cpp  

regexpr2.cpp 

在网上看到有直接把这6个文件加到测试工程中的,编译链接时会出错。

可采用生成lib方法:(如下)

1.在vc中创建Greta工程,编译成静态库lib文件。将在debug目录下生成Grete.lib


2.创建测试工程Test,可用Greta示例demo,greta2.htm中:

#include <iostream>
#include <string>
#include "../Greta/regexpr2.h"


using namespace std;
using namespace regex;
 
int main() {
    match_results results;
    string str("The book cost $12.34");
    rpattern pat( "\\$(\\d+)(\\.(\\d\\d))?" ); 
    // Match a dollar sign followed by one or more digits,
    // optionally followed by a period and two more digits.
    // The double-escapes are necessary to satisfy the compiler.
 
    match_results::backref_type br = pat.match( str, results );
    if( br.matched ) {
        cout << "match success!" << endl;
        cout << "price: " << br << endl;
    } else {
        cout << "match failed!" << endl;
    }
    return 0;
}

注意:include路径:#include "../Greta/regexpr2.h" 

3.在vc中添加你编译后的lib文件:Greta.lib

a、在Project->Add to Project->Files中将你的LIB文件直接加入到工程中去。

b、在TOOLS->OPTIONS->Directories->Library files,加入你的LIB文件所在的目录,然后:
      在Project->setting->link->Object/Library Modules中加入你的LIB文件:Greta.lib

4.编译,运行Test工程:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值