strpbrk
- Updated2023-02-21
- 1 minute(s) read
strpbrk
char *strpbrk (const char stringToSearch[], const char characterSet[]);
Purpose
Locates the first occurrence in a string of any character in the specified character set. The function returns a pointer to the character matched if found or a NULL pointer if the character does not occur in the string.
Parameters
Input | ||
Name | Type | Description |
stringToSearch | const char [] | Contains a pointer to the string that is searched to locate any of the characters specified in characterSet. |
characterSet | const char [] | Contains a pointer to the character set containing the characters that are searched for in the specified string. |
Return Value
Name | Type | Description |
matchedChar | char * | Contains a pointer to the located character or a NULL pointer if the character does not occur in the string. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later