在 std::wstring 中查找方法

发布于 2024-12-23 04:11:55 字数 495 浏览 2 评论 0原文

我已声明 Wstring 如下

wstring strID

当我尝试按如下所示查找出现的子字符串时,

int index =   strID.find("LABS");

我收到如下错误,

error C2664: 'unsigned int std::basic_string<_Elem,_Traits,_Ax>::find(const std::basic_string<_Elem,_Traits,_Ax> &,unsigned int) const' : cannot convert parameter 1 from 'const char [13]' to 'const std::basic_string<_Elem,_Traits,_Ax> &'

您能帮我查找出现的子字符串吗?

I have declared Wstring as follows

wstring strID

When I try to find the occurrences sub-string as follows

int index =   strID.find("LABS");

I am getting error like the following

error C2664: 'unsigned int std::basic_string<_Elem,_Traits,_Ax>::find(const std::basic_string<_Elem,_Traits,_Ax> &,unsigned int) const' : cannot convert parameter 1 from 'const char [13]' to 'const std::basic_string<_Elem,_Traits,_Ax> &'

Can you please help me to find the occurrences of sub-string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幼儿园老大 2024-12-30 04:11:55

搜索 wstring 时,您还需要将参数设置为宽字符串

int index =   strID.find(L"LABS"); 
                         ^

When searching a wstring, you need to have the parameter as a wide string as well

int index =   strID.find(L"LABS"); 
                         ^
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文