从长字符串中获取想要的字符串
Posted pond-zzc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从长字符串中获取想要的字符串相关的知识,希望对你有一定的参考价值。
char hh[512]={0};
strcpy(hh,"PrinterSerialNumber:G11404;PrinterStatus");
string str;
str=hh;
str=str.replace(str.find("PrinterSerialNumber:"),strlen("PrinterSerialNumber:"),"");
str=str.replace(str.find("PrinterSerialNumber:"),strlen(";PrinterStatus"),"");
输出结果为:G11404
以上是关于从长字符串中获取想要的字符串的主要内容,如果未能解决你的问题,请参考以下文章