c语言字符串截取特定字符,c语言string截取字符串
#包括
#包括
使用命名空间标准
/**
* 截取潜艇用热中子反应堆(海底热反应堆的缩写)后的元素
* @param流待截取字符串
* @param str截取定位字符串
* @返回
*/
静态自动剪切Next(string stream,const string str) {
int nPos=stream。find(str);
如果(nPos!=-1) {
溪流=溪流。substr(nPos str。size()、stream。size());
}
回流;
}
/**
* 截取潜艇用热中子反应堆(海底热反应堆的缩写)前的元素
* @param流待截取字符串
* @param str截取定位字符串
* @返回
*/
静态自动切割前(字符串流,常量字符串str) {
int nPos=stream。find(str);
如果(nPos!=-1) {
stream=stream.substr(0,nPos);
}
回流;
}
int main() {
string str= helloworld
string str_pre=cutPre(str, world );
string str_next=cutNext(str, hello );
cout str= str endl
cout str _ next= str _ next endl
cout str _ pre= str _ pre endl
}运行结果
空谈不值钱。给我看看代码
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。