std::string foobar = "ab/d?..."; std::remove_if (foobar.begin(), foobar.end(), [](char c) { return c=='/' || c=='?' || '.'; });
確定! 回上一頁