C++ Programming/Code/Standard C Library/Functions/strcspn
< C++ Programming < Code < Standard C Library < Functionsstrcspn
Syntax |
#include <cstring>
size_t strcspn( const char *str1, const char *str2 );
|
The function strcspn() returns the index of the first character in str1 that matches any of the characters in str2.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.