This topic has not yet been rated - Rate this topic

StrChrNW function

Searches a string for the first occurrence of a specified character. The comparison is case-sensitive.

Syntax


PWSTR StrChrNW(
  _In_  PWSTR pszStart,
  WCHAR wMatch,
  UINT cchMax
);

Parameters

pszStart [in]

Type: PWSTR

A pointer to the string to be searched.

wMatch

Type: WCHAR

The character to be used for comparison.

cchMax

Type: UINT

The maximum number of characters to search.

Return value

Type: PWSTR

Returns the address of the first occurrence of the character in the string if successful, or NULL otherwise.

Remarks

StrChrNW searches for wMatch from pszStart to pszStart + cchMax, or until a NULL character is encountered.

To help ensure optimal performance, pszStart should be word-aligned.

Requirements

Minimum supported client

Windows XP [desktop apps only]

Minimum supported server

Windows Server 2003 [desktop apps only]

Header

Shlwapi.h

Library

Shlwapi.lib

DLL

Shlwapi.dll (version 6.0 or later)

See also

StrChr
StrChrI

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.