facebook twitter hatena line email

Cocos2dx/std::string

提供: 初心者エンジニアの簡易メモ
2018年11月16日 (金) 12:26時点におけるAdmin (トーク | 投稿記録)による版 (文字列検索)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

サンプル

#include <string>
std::string str = "Hello World";
log("%s", str.c_str()); // Hello World

文字列結合

str += "hoge";

文字列検索

未検証

if (std::string("hogepiyo").find('gepi') != std::string::npos) {
  puts("gepiが見つかりました");
}