example.cpp
上传用户:sz_zxd888
上传日期:2021-08-19
资源大小:6059k
文件大小:1k
源码类别:

词法分析

开发平台:

C/C++

  1. #include <string>
  2. #include <vector>
  3. #include <iostream>
  4. using namespace std;
  5. #include "IRLAS_DLL.h"
  6. int main() 
  7. {
  8. IRLAS_LoadResource( "irlas.ini", "../irlas_data");
  9. void *g_pSegger = IRLAS_CreateSegger();
  10. IRLAS_SetOption(g_pSegger, 1, 1, 1);
  11. string str = "我是一个中国人,我爱我的祖国。";
  12. vector<string> vecWord;
  13. IRLAS(g_pSegger, str, vecWord);
  14. copy(vecWord.begin(), vecWord.end(), ostream_iterator<string>(cout, " "));
  15. cout << endl;
  16. IRLAS_ReleaseSegger(g_pSegger);
  17. IRLAS_ReleaseResource();
  18. return 0;
  19. }