59 - 撃たれても動く名無し@転載禁止 2023/07/26(水) 01:06:42.92 ID:y9KJlp2N0
最終的に何がやりたいんかよくわからんけどこういうこと??
std::string str = "abc123";
std::vector<int> num;
std::string str2;
for (auto& c :str){
//アルファベットか
if (c >= 'A' && c <= 'z')
{
str2 += c;
}
//数字か
else if (c >= '0' && c <= '9')
{
num.push_back(c - 48);
}
else
{
//うんち
}
}