免费注册 查看新帖 |

Chinaunix

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

boost 的match操作,怎么老不成功? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-25 11:39 |只看该作者 |倒序浏览
#include <cstdlib>
#include <stdlib.h>
#include <boost/regex.hpp>
#include <string>
#include <iostream>
#include <fstream>

#include <time.h>

using namespace std;
using namespace boost;


//
// problem with std::getline under MSVC6sp3
istream& mgetline(istream& is, std::string& s)
{
   s.erase();
   char c = is.get();
   while(c != '\n')
   {
      s.append(1, c);
      c = is.get();
   }
   return is;
}


int main(int argc, char**argv)
{        /*
        //redirect its standard input to the standard input of a file.
        ifstream ifs;
        streambuf* pbuf = 0;
        if(argc == 2)
        {
                ifs.open(argv[1]);
                if(ifs.bad())
                {
                        cout << "Bad filename: " << argv[1] << endl;
                        return -1;
                }
                pbuf = cin.rdbuf(ifs.rdbuf());
        }
        */
        //get first string in the file
        string str_in, str_out;
        //mgetline(cin, str_in);
        str_in = " ch ontains a message stringquitquitThe book cost $12.34.";
        cout << str_in <<endl;
       
   //regex expression("\\b.*\\b");
   regex expression("\\$(\\d+)(\\.(\\d\\d))?");
   
   // msg with the ftp response message.
   //int process_ftp(const char* response, std::string* msg)
   //{
   cmatch what;
   int result = -1;
   if(regex_match(str_in.c_str(), expression))
   {
      // what[0] contains the whole string
      // what[1] contains the response code
      // what[2] contains the separator character
      // what[3] contains the text message.
      //if(str_out)
      cout << "Success! " << endl;
      //str_out.assign(what[3].first, what[3].second);
      //result = ::atoi(what[1].first);
   }
#if 0


      if(result != -1)
      {
         cout << "Match found:" << endl;
         cout << "Response code: " << result << endl;
         cout << "Message text: " << str_out << endl;
      }
      else
      {
         cout << "Match not found" << endl;
      }
      cout << endl;
              // failure did not match
   //if(str_out)
      //str_out.erase();
#endif
   cout<< "Exit." << endl;
   return 0;
}



y68351@l09946c /usr/local/boost_1_33_1/libs/regex/example
$ ./regex_match.exe
ch ontains a message stringquitquitThe book cost $12.34.
Exit.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP