1. 程式人生 > >C++中String類的擷取字串學習筆記

C++中String類的擷取字串學習筆記

Java中擷取字串的方法有subString()的方法,可以方便的擷取所需要的字串,下面來學習下C++中擷取字串的方法。

#include <iostream>
#include <string>
#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std; 
int main(int argc, char** argv) {
	string str="The current page will delete.";
	cout <<str.substr(2)<<endl;
	cout <<str.substr(str.find("c",0))<<endl;
	cin.get();
	return 0;
}


標頭檔案#include <stdio.h>是用來C語言列印日誌的

substr擷取字串引數是開始擷取字串的小標索引