標題:
substr() 函式
[打印本頁]
作者:
tonyh
時間:
2022-12-15 19:39
標題:
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;
}
複製代碼
作者:
黃宥華
時間:
2022-12-15 20:37
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
string str="01234567891011";
cout<<str.substr(5)<<endl;
cout<<str.substr(2)<<endl;
cout<<str.substr(3,2)<<endl;
cout<<str.substr(7,1)<<endl;
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2022-12-15 20:43
#include<bits/stdc++.h>
#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;
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2022-12-15 20:45
#include<bits/stdc++.h>
using namespace std;
#define ll long long
//#define int ll
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define REP(i,n) FOR(i,0,n)
#define REP1(i,n) FOR(i,1,(n)+1)
#define RREP(i,n) for(int i=(n)-1;i>=0;i--)
#define f first
#define s second
#define pb push_back
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)(x.size())
#define SQ(x) (x)*(x)
#define pii pair<int,int>
#define Graph vector<vector<int>>
#define IOS() cin.sync_with_stdio(0),cin.tie(0),cout.tie(0)
const ll inf=(1ll<<63)-1;
const int maxn=1e5+5;
const ll mod=1e9+7;
string s="0123456789";
signed main()
{
IOS();
cout<<s<<"\n";
cout<<s.substr(2)<<"\n";
cout<<s.substr(2,3)<<"\n";
cout<<s.substr(5,3)<<"\n";
return 0;
}
複製代碼
作者:
李沛昂
時間:
2022-12-15 20:53
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2