標題:
2025/3/14 課堂重點(昀杰)
[打印本頁]
作者:
郭竑志
時間:
2025-3-14 18:47
標題:
2025/3/14 課堂重點(昀杰)
本帖最後由 郭竑志 於 2025-3-14 18:48 編輯
[課程重點]
stringstream 字串串流 (一)
stringstream 字串串流 (二)
stringstream 字串串流 (三)
substr() 函式
find() 與 rfind() 函式
replace() 函式
[今日作業]
字串分割 (一)
作者:
陳昀杰
時間:
2025-3-14 18:58
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 19:08
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string s,d="123 42 13 56 8 67 7";
ss<<d;
while(ss>>s)
{
cout<<s<<endl;
}
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 19:14
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str="012 34 567 89";
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;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 19:26
#include<iostream>
#include<cstdlib>
#include<algorithm>
using namespace std;
int main()
{
string str="Hello World!";
cout<<str<<endl;
cout<<<<str.find('H')<<endl;
cout<<<<str.rfind('o')<<endl;
cout<<str.find("llo")<<endl;
cout<<str.find('l', 4)<<endl;
int res=str.find('a');
cout<<res<<endl;
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 19:39
#include<iostream>
#include<cstdlib>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string str1="honolulu";
cout<<str1.replace(1,3,"a")<<endl; //halulu
string str2="honolulu";
cout<<str2.replace(str2.find("u"),1,"a")<<endl; //honolalu
string str3="honolulu";
replace(str3.begin(),str3.end(),'u','a');
cout<<str3<<endl; //honolala
system("pause");
return 0;
}
複製代碼
作者:
郭竑志
時間:
2025-3-14 19:48
2 + 3 * 4
作者:
陳昀杰
時間:
6 天前 19:37
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
string s="123.45.6789";
stringstream ss;
int f=0;
while(true)
{
f=s.find(".");
if(f<0)
{
break;
}
s.replace(f,1," ");
}
ss<<s;
while(ss>>s)
{
cout<<s<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2