標題:
substr() 函式
[打印本頁]
作者:
tonyh
時間:
2020-6-5 20:00
標題:
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-6-5 20:20
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-6-5 20:22
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="abcdefghijklmnopqrstuvwxyz";
cout<<str.substr(7,1)<<endl;
cout<<str.substr(0,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2020-6-5 20:22
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="9876543210";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-6-5 20:23
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-6-5 20:24
#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-6-5 20:25
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2020-6-5 20:25
#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-7-3 18:17
本帖最後由 黃辰昊 於 2020-7-3 18:23 編輯
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
string str="0123456789";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,3)<<endl;
cout<<str.substr(7,1)<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2