std::ispunct

From cppreference.com
< cpp‎ | string‎ | byte
Defined in header <cctype>
int ispunct( int ch );

Checks if the given character is a punctuation character as classified by the current C locale. The default C locale classifies the characters !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ as punctuation.

The behavior is undefined if the value of ch is not representable as unsigned char and is not equal EOF.

Parameters

ch - character to classify

Return value

Non-zero value if the character is a punctuation character, zero otherwise.