isgraph
Testa se um elemento em uma localidade é um caractere alfanumérico ou de pontuação.
template<Class CharType>
bool isgraph(
CharType _Ch,
const locale& _Loc
)
Parâmetros
_Ch
O elemento a ser testado._Loc
A localidade que contém o elemento a ser testado.
Valor de retorno
true se o elemento testado é uma alfanumérica ou um caractere de pontuação; false se não for.
Comentários
A função do modelo retorna use_facet<C<CharType> >(_Loc).é(::<graph>, _ChdectypeCharType).
Exemplo
// locale_is_graph.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc ( "German_Germany" );
bool result1 = isgraph ( 'L', loc );
bool result2 = isgraph ( '\t', loc );
bool result3 = isgraph ( '.', loc );
if ( result1 )
cout << "The character 'L' in the locale is\n "
<< "an alphanumeric or punctuation character." << endl;
else
cout << "The character 'L' in the locale is\n "
<< " not an alphanumeric or punctuation character." << endl;
if ( result2 )
cout << "The character 'backslash-t' in the locale is\n "
<< "an alphanumeric or punctuation character." << endl;
else
cout << "The character 'backslash-t' in the locale is\n "
<< "not an alphanumeric or punctuation character." << endl;
if ( result3 )
cout << "The character '.' in the locale is\n "
<< "an alphanumeric or punctuation character." << endl;
else
cout << "The character '.' in the locale is\n "
<< " not an alphanumeric or punctuation character." << endl;
}
Saída
The character 'L' in the locale is
an alphanumeric or punctuation character.
The character 'backslash-t' in the locale is
not an alphanumeric or punctuation character.
The character '.' in the locale is
an alphanumeric or punctuation character.
Requisitos
localidade <deCabeçalho: >
Namespace: std