我們可運用 length() 函式帶出字串的長度,而從每個索引位置帶出來的單一元素都是字元。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string str="Hello World!";
- int len=str.length();
- cout<<"字串:"<<str<<endl;
- cout<<"長度:"<<len<<endl;
- cout<<"字串中的每個字元:"<<endl;
- for(char c: str)
- cout<<c<<endl;
- /*
- for(int i=0; i<len; i++)
- cout<<str[i]<<endl;
- */
- system("pause");
- return 0;
- }
複製代碼 |