「C++」length()で文字列の長さを返すサンプル
書式
文字列.length()
使用例
#include <iostream> using namespace std; int main() { string strA = "arkgame"; cout << "半角文字の文字列の長さ" << endl; cout << strA.length() << endl; string strB = ""; cout << "空文字の文字列の長さ" << endl; cout << strB.length() << endl; string strC = "テスト"; cout << "全角文字の文字列の長さ" << endl; cout << strC.length() << endl; string strD = " "; cout << "半角空白文字の文字列の長さ" << endl; cout << strD.length() << endl; string strE = " "; cout << "全角空白文字の文字列の長さ" << endl; cout << strE.length() << endl; return 0; }
実行結果
半角文字の文字列の長さ
7
空文字の文字列の長さ
0
全角文字の文字列の長さ
9
半角空白文字の文字列の長さ
1
全角空白文字の文字列の長さ
3