iswprint () es una función incorporada en C/C++ que verifica si el carácter ancho dado se puede imprimir o no. Se define dentro del archivo de encabezado cwctype de C++. Por defecto, los siguientes caracteres son imprimibles:
- Dígitos (0 a 9)
- Letras mayúsculas (A a Z)
- Letras minúsculas (de la a a la z)
- Caracteres de puntuación (!”#$%&'()*+, -./:;?@[\]^_`{|}~)
- Espacio
Sintaxis :
int iswprint(ch)
Parámetros : la función acepta un solo parámetro obligatorio ch que especifica el carácter ancho que debe verificarse si se puede imprimir o no.
Valor devuelto : la función devuelve dos valores como se muestra a continuación.
- Si el parámetro ch es imprimible, se devuelve un valor distinto de cero.
- Si no es un carácter imprimible, se devuelve 0.
Los siguientes programas ilustran la función anterior.
Programa 1 :
// Program to illustrate // towprint() function #include <cwchar> #include <cwctype> #include <iostream> using namespace std; int main() { wchar_t str[] = L"Geeks\tfor\tGeeks"; for (int i = 0; i < wcslen(str); i++) { // Function to check if the characters are // printable or not. If not, then replace // all non printable character by comma if (!iswprint(str[i])) str[i] = ', '; } wcout << "Printing, if the given wide character cannot be printed\n"; wcout << str; return 0; }
Producción:
Printing , if the given wide character cannot be printed Geeks, for, Geeks
Programa 2 :
// Program to illustrate // towprint() function #include <cwchar> #include <cwctype> #include <iostream> using namespace std; int main() { wchar_t str[] = L"Ishwar Gupta\t123\t!@#"; for (int i = 0; i < wcslen(str); i++) { // Function to check if the characters are // printable or not. If not, then replace // all non printable character by comma if (!iswprint(str[i])) str[i] = ', '; } wcout << "Printing, if the given wide character cannot be printed\n"; wcout << str; return 0; }
Producción:
Printing , if the given wide character cannot be printed Ishwar Gupta, 123, !@#
Publicación traducida automáticamente
Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA