代码拉取完成,页面将自动刷新
#include "位置查找.h"
//2句子去除标点符号 空格 求出汉字个数
void testfindback(string str, string chars, void callback(size_t)) {
string strstr = str;
string strchars = chars;
size_t pos = strstr.find_first_of(strchars);
if (pos != string::npos) {
callback(pos);
}
}
//返回位置
void myCallback(size_t index) {
cout << "位置" << index << endl;
}
void test05(string str, void callback(size_t)) {
string sworlds = str;
size_t num = sworlds.length();
// int nums = static_cast<int>(sworlds.length());
string chars = "abcefgiklmopqrstuvwxyz!@#$%^&*-=\"?[]~|()_+'/{}`<>\\;:12345790 ";
testfindback(sworlds, chars, callback);
}
//字符串查找
/* string str1 = "好大啊";
string chars1 = "你们真的好吗?是不是真的啊?"
返回2
*/
void testfind(string str, string chars) {
string strstr = str;
string strchars = chars;
size_t pos = strstr.find_first_not_of(strchars);
if (pos != string::npos) {
cout << pos << endl;
}
else {
cout << "没有找到" << endl;
}
}
/*string str1 = "哈哈哈哈啊哈哈";
string chars1 = "你们真的好吗?是不是真的啊?";
返回8
*/
void testfind01(string str, string chars) {
string strstr = str;
string strchars = chars;
size_t pos = strstr.find_first_of(strchars);
if (pos != string::npos) {
cout << pos << endl;
}
else {
cout << "没有找到" << endl;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。