GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::wcspbrk(3) C++ Standard Libary std::wcspbrk(3)

std::wcspbrk - std::wcspbrk


Defined in header <cwchar>
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str );
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str );


Finds the first character in wide string pointed to by dest, that is also in wide
string pointed to by str.


dest - pointer to the null-terminated wide string to be analyzed
src - pointer to the null-terminated wide string that contains the characters to
search for


Pointer to the first character in dest, that is also in str, or a null pointer if no
such character exists.


The name stands for "wide character string pointer break", because it returns a
pointer to the first of the separator ("break") characters.

// Run this code


#include <iostream>
#include <cwchar>
#include <iomanip>


int main()
{
const wchar_t* str = L"Hello world, friend of mine!";
const wchar_t* sep = L" ,!";


unsigned int cnt = 0;
do {
str = std::wcspbrk(str, sep); // find separator
std::wcout << std::quoted(str) << L'\n';
if (str) str += std::wcsspn(str, sep); // skip separator
++cnt; // increment word count
} while (str && *str);


std::wcout << L"There are " << cnt << L" words\n";
}


" world, friend of mine!"
", friend of mine!"
" of mine!"
" mine!"
"!"
There are 5 words


returns the length of the maximum initial segment that consists
wcscspn of only the wide not found in another wide string
(function)
wcschr finds the first occurrence of a wide character in a wide string
(function)
strpbrk finds the first location of any character from a set of separators
(function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.