std::iswgraph

Header: <cwctype>

Checks if the given wide character has a graphical representation, i.e. it is either a number (0123456789), an uppercase letter (ABCDEFGHIJKLMNOPQRSTUVWXYZ), a lowercase letter (abcdefghijklmnopqrstuvwxyz), a punctuation character (!"#$%&’()*+,-./:;<=>?@[]^_`{|}~) or any graphical character specific to the current C locale.

# Declarations

int iswgraph( std::wint_t ch );

# Parameters

# Return value

Non-zero value if the wide character has a graphical representation character, zero otherwise.

# Notes

ISO 30112 specifies which Unicode characters are include in POSIX graph category.

# Example

#include <clocale>
#include <cwctype>
#include <iostream>
 
int main()
{
    wchar_t c = L'\u2602'; // the Unicode character Umbrella ('☂')
 
    std::cout << std::hex << std::showbase << std::boolalpha
              << "in the default locale, iswgraph("
              << static_cast<std::wint_t>(c) << ") = "
              << static_cast<bool>(std::iswgraph(c)) << '\n';
 
    std::setlocale(LC_ALL, "en_US.utf8");
    std::cout << "in Unicode locale, iswgraph("
              << static_cast<std::wint_t>(c) << ") = "
              << static_cast<bool>(std::iswgraph(c)) << '\n';
}

# See also