本文介绍了如何将一个bstr分成两个bstr的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到需要使用定界符将bstr分成两个单独的bstr的情况.
是否有可用的API/宏

I have scenario where i need to split the bstr into two seperate bstr using a delimiter.
Is there any API/macro available

推荐答案

bstr_t b = bstr_t(L"Hi folks");
wstring w = b;
wstring::size_type pos = w.find(L' ');
bstr_t b1 = w.substr(0, pos).c_str();
bstr_t b2 = w.substr(pos+1).c_str();



这篇关于如何将一个bstr分成两个bstr的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-23 17:17