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