標題:
substr() 函式
[打印本頁]
作者:
王瑞喻
時間:
2020-9-2 14:50
標題:
substr() 函式
試以 substr() 函式,抓出字串中特定範圍內的字串。
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl; //56789
cout<<str.substr(2)<<endl; //23456789
cout<<str.substr(3,3)<<endl; //345
cout<<str.substr(7,1)<<endl; //7
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2020-9-5 11:33
此帖僅作者可見
作者:
張淯祺
時間:
2020-9-5 11:33
此帖僅作者可見
作者:
林羿丞
時間:
2020-9-5 11:35
此帖僅作者可見
作者:
王銘鴻
時間:
2020-9-5 11:37
此帖僅作者可見
作者:
朱閎聿
時間:
2020-9-5 11:38
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2