Skip to content

Latest commit

 

History

History
100 lines (75 loc) · 3.61 KB

nf-chstring-chstring-find(lpcwstr).md

File metadata and controls

100 lines (75 loc) · 3.61 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:chstring.CHString.Find(LPCWSTR)
CHString::Find(LPCWSTR) (chstring.h)
The Find method searches a string for the first match of a substring.
?Find@CHString@@QBEHPBG@Z
?Find@CHString@@QEBAHPEBG@Z
CHString interface [Windows Management Instrumentation]
Find method
CHString.Find
CHString.Find(LPCWSTR)
CHString::Find
CHString::Find(LPCWSTR)
Find
Find method [Windows Management Instrumentation]
Find method [Windows Management Instrumentation]
CHString interface
_hmm_chstring_find
chstring/CHString::Find
wmi.chstring_find_lpcwstr_
wmi\chstring_find_lpcwstr_.htm
wmi
d2a8998c-e0e3-47d0-9539-9ae1d1fba5c8
12/05/2018
?Find@CHString@@QBEHPBG@Z, ?Find@CHString@@QEBAHPEBG@Z, CHString interface [Windows Management Instrumentation],Find method, CHString.Find, CHString.Find(LPCWSTR), CHString::Find, CHString::Find(LPCWSTR), Find, Find method [Windows Management Instrumentation], Find method [Windows Management Instrumentation],CHString interface, _hmm_chstring_find, chstring/CHString::Find, wmi.chstring_find_lpcwstr_
chstring.h
FwCommon.h
Windows
Windows Vista
Windows Server 2008
FrameDyn.lib
FrameDynOS.dll; FrameDyn.dll
Windows
19H1
CHString::Find
chstring/CHString::Find
c++
APIRef
kbSyntax
DllExport
FrameDynOS.dll
FrameDyn.dll
CHString.Find
?Find@CHString@@QBEHPBG@Z
?Find@CHString@@QEBAHPEBG@Z

CHString::Find(LPCWSTR)

-description

[The CHString class is part of the WMI Provider Framework which is now considered in final state, and no further development, enhancements, or updates will be available for non-security related issues affecting these libraries. The MI APIs should be used for all new development.]

The Find method searches a string for the first match of a substring.

-parameters

-param lpszSub

A substring that the method searches for.

-returns

If the Find method is successful, it returns the zero-based index of the first character in this CHString string that matches the requested substring or characters. If the substring or character is not found, the method returns a value of -1.

-remarks

The Find method is overloaded to accept both single characters (similar to the runtime function, wcschr) and strings (similar to the runtime function, wcsstr).

Examples

The following code example shows the use of CHString::Find.

CHString s( L"abcdef" );
assert( s.Find( 'c' ) == 2 );
assert( s.Find( L"de" ) == 3 );

-see-also

CHString

CHString::FindOneOf

CHString::ReverseFind