#include using namespace std;
int main()
{
wstring strPt = L"demo;
ytouch";
wstring::size_type pos1,pos2;
pos1 = strPt.find(L";
");
pos2 = strPt.find(L"to2");
if (wstring::npos == pos1)
{
cout << "没找到;
符号" << endl;
}
if (wstring::npos == pos2)
{
cout << "没找到to2 字符" << endl;
}
cout << pos1 << endl;
}
运行结果:
【std::wstring std::wstring::sizetype wstring::npos 简单示例介绍】
文章图片
介绍:
std::wstring::sizetype 表示一段字符的长度。此长度例如avbd长度为4 aa 长度为2这种意思
npos表示最大值---》》也是wstring find函数没找到对应字符的返回值,所以可以进行比较。
推荐阅读
- 个人日记|K8s中Pod生命周期和重启策略
- 学习分享|【C语言函数基础】
- C++|C++浇水装置问题
- 数据结构|C++技巧(用class类实现链表)
- C++|从零开始学C++之基本知识
- 步履拾级杂记|VS2019的各种使用问题及解决方法
- leetcode题解|leetcode#106. 从中序与后序遍历序列构造二叉树
- 动态规划|暴力递归经典问题
- 麦克算法|4指针与队列
- 遇见蓝桥遇见你|小唐开始刷蓝桥(一)2020年第十一届C/C++ B组第二场蓝桥杯省赛真题