Ejemplo 1: convertir una cadena completa a mayúsculas c ++
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s = "Viet Nam";
transform(s.begin(), s.end(), s.begin(), ::toupper); //uppercase
cout << s << endl;
return 0;
}
Ejemplo 2: convertir todos los caracteres en una cadena a mayúsculas c ++
transform(str.begin(), str.end(), str.begin(), ::toupper);
Ejemplo 3: c ++ convertir minúsculas a mayúsculas
/* toupper example */
#include <stdio.h>
#include <ctype.h>
int main ()
{
int i=0;
char str[]="Test String.n";
char c;
while (str[i])
{
c=str[i];
putchar (toupper(c));
i++;
}
return 0;
}
Ejemplo 4: cadena a c ++ superior
std::string data = "This is a sample string.";
// convert string to upper case
std::for_each(data.begin(), data.end(), [](char & c){
c = ::toupper(c);
});
Ejemplo 5: touppercase c ++
#include <cctype>
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
int main()
{
char str[] = "John is from USA.";
cout << "The uppercase version of "" << str << "" is " << endl;
for (int i=0; i<strlen(str); i++)
putchar(toupper(str[i]));
return 0;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)