facebook twitter hatena line email

「Cocos2dx/std::string」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==サンプル== #include <string> std::string str = "Hello World"; log("%s", str.c_str()); // Hello World」)
 
(文字列検索)
 
(同じ利用者による、間の2版が非表示)
行3: 行3:
 
  std::string str = "Hello World";
 
  std::string str = "Hello World";
 
  log("%s", str.c_str()); // Hello World
 
  log("%s", str.c_str()); // Hello World
 +
 +
==文字列結合==
 +
str += "hoge";
 +
 +
==文字列検索==
 +
未検証
 +
if (std::string("hogepiyo").find('gepi') != std::string::npos) {
 +
  puts("gepiが見つかりました");
 +
}

2018年11月16日 (金) 12:26時点における最新版

サンプル

#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が見つかりました");
}