免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2185 | 回复: 2
打印 上一主题 下一主题

[C++] pcre++ 库的问题 在线等!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-22 19:01 |只看该作者 |倒序浏览
  1. /*
  2. * g++ pcre2.cpp -I/usr/local/include -L/usr/local/lib -R/usr/local/lib -lpcre++ -lpcre
  3. */
  4. #include <string>
  5. #include <iostream>
  6. #include <pcre++.h>

  7. using namespace std;
  8. using namespace pcrepp;

  9. int main()
  10. {
  11.         string src("111 <title>Hello World</title> 222");
  12.         string pattern("<title>(.*)</title>");

  13.         cout << "String : " << src << endl;
  14.         cout << "Pattern : " << pattern << endl;

  15.         Pcre reg(pattern, PCRE_DOTALL);
  16.         if (reg.search(src) == true) { //
  17.                 cout << "\nOK, has matched ...\n\n";
  18.                 for(int pos = 0; pos < reg.matches(); pos++) {
  19.                         cout << pos << ": " << reg[pos] << endl;
  20.                 }
  21.         } else {
  22.                 cout << "Sorry, no match ...\n";
  23.                 return 1;
  24.         }

  25.         return 0;
  26. }
复制代码
上午还能运行,下午就莫名其妙的出问题了。PS:当然是与时间无关了。
/tmp/ccJtgcR2.o: In function `main':
test.cpp.text+0xee): undefined reference to `pcrepp:cre:cre(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int)'
test.cpp.text+0x100): undefined reference to `pcrepp:cre::search(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&'
test.cpp.text+0x1d: undefined reference to `pcrepp:cre::~Pcre()'
test.cpp.text+0x23c): undefined reference to `pcrepp:cre::~Pcre()'
/tmp/ccJtgcR2.o: In function `pcrepp:cre:perator[](int)':
test.cpp.text._ZN6pcrepp4PcreixEi[pcrepp:cre:perator[](int)]+0x1b): undefined reference to `pcrepp:cre::get_match(int) const'
collect2: ld returned 1 exit status
出现的是这个错误  在linux下运行的,pcre何pcre++ 已经安装了,那是怎么回事

论坛徽章:
0
2 [报告]
发表于 2013-04-22 19:02 |只看该作者
我感觉是调用pcre里面的方法出现了问题,程序是没有问题,难道是参数的问题?

论坛徽章:
1
白羊座
日期:2013-08-20 17:40:23
3 [报告]
发表于 2013-04-23 09:37 |只看该作者
只用过c版的,不过看样子应该是库的问题,
先试试程序能不能重新编译通过吧,
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP