65,108
社区成员
发帖
与我相关
我的任务
分享
item0=100,10, 1, \C111222 \c255000000 \s2 \ff1616欢迎您
#include <iostream>
#include <string>
int main() {
std::string str = "item0=100,10, 1, \C111222 \c255000000 \s2 \ff1616欢迎您";
char ch = '\C';
// 使用 find 函数查找字符 'W' 在字符串中的位置
size_t found_pos = str.find(ch);
if (found_pos != std::string::npos) {
std::cout << "字符 '" << ch << "' 在字符串中的位置是: " << found_pos << std::endl;
} else {
std::cout << "字符 '" << ch << "' 在字符串中未找到。" << std::endl;
}
return 0;
}
#include <iostream>
#include <string>
int main() {
std::string str = "item0=100,10, 1, \\C111222 \\c255000000 \\s2 \ff1616欢迎您";
std::string subs = "\\C";
// 使用 find 函数查找字符串 '\C' 在字符串中的位置
size_t found_pos = str.find(subs);
if (found_pos != std::string::npos) {
std::cout << "子字符串 '" << subs << "' 在字符串中的位置是: " << found_pos << std::endl;
} else {
std::cout << "子字符串 '" << subs << "' 在字符串中未找到。" << std::endl;
}
return 0;
}
//子字符串 '\C' 在字符串中的位置是: 17