3 Star 7 Fork 2

qidouhai/ai-demo-one

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
位置查找.cpp 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
qidouhai 提交于 2023-07-25 14:53 . test git push
#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;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qihai/ai-demo-one.git
git@gitee.com:qihai/ai-demo-one.git
qihai
ai-demo-one
ai-demo-one
master

搜索帮助