首页 > 其他 > 详细

VC查找字符串

时间:2015-01-16 14:28:09      阅读:444      评论:0      收藏:0      [点我收藏+]
第一种方式
#include "stdafx.h" #include <string.h> #include <stdio.h> #include <Windows.h> #include <atlbase.h> #include <atlfile.h> int main(int argc,char** argv) { wchar_t temp[MAX_PATH] = L"Hello:words,what is your name?"; wchar_t* result = NULL; wchar_t szname[MAX_PATH] = {0}; result = StrRStrIW(temp,NULL,L":"); printf("result = %S\r\n",result); lstrcpy(szname,++result); printf("Szname = %S\r\n",szname); return 0; } 输出: result = :words,what is your name? Szname = words,what is your name?
第二种方式:

int main(int argc,char** argv)
{
    char* name = "Hello word:your is what name?";
    char* cres = NULL;
    cres = strstr(name,":");
    printf("Cres = %s\r\n",++cres);
    return 0;
}

输出:

Cres = your is what name?

 

VC查找字符串

原文:http://www.cnblogs.com/killbit/p/4228523.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!