標題:
substr() 函式
[打印本頁]
作者:
陳育霖
時間:
2023-8-23 22:58
標題:
substr() 函式
本帖最後由 陳育霖 於 2024-3-27 17:35 編輯
試以 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;
}
複製代碼
作者:
陳郁媗
時間:
2023-8-29 19:36
此帖僅作者可見
作者:
陳沁寧
時間:
2024-3-30 14:28
此帖僅作者可見
作者:
盧承新
時間:
2024-5-1 18:34
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2