LPCWSTR location_url;
m_spWebBrowser->get_LocationURL((BSTR*)&location_url);
如何将LPCWSTR
与const char *
中的strstr
进行比较?
示例:
if(strstr((location_url, ".html"))
答案 0 :(得分:5)
您也可以将目标扩展名设为宽字符串并使用wcsstr
wchar_t* ext = L".html";
if (wcsstr(location_url, ext))