[SOLUCIONADO] VB Ucase

Iniciado por Miseryk, 8 Febrero 2012, 20:23 PM

0 Miembros y 1 Visitante están viendo este tema.

Miseryk

Hola estoy aqui nuevamente, queria saber si alguno tiene idea como lograr el Ucase de vb, por ejemplo Ucase(STRING), porque cree la funcion InStr de vb pero no identifica minusculas y mayusculas, entonces me gustaria antes hacer str1 = Ucase(Param1) str2 = Ucase(Param2) y luego seguir con el code, desde ya, muchas gracias.

EI: juntando mensajes.


Hola a todos, pude resolverlo, aqui esta la respuesta:


Código (vb) [Seleccionar]

#include <algorithm>
#include <string>

....

string M_Ucase(string Cadena)
{
std::transform(Cadena.begin(), Cadena.end(), Cadena.begin(), ::toupper);

return Cadena;
}

/*
Dentro del main pueden hacer

cout << M_Ucase("blabla") << std::endl;
*/
Can you see it?
The worst is over
The monsters in my head are scared of love
Fallen people listen up! It's never too late to change our luck
So, don't let them steal your light
Don't let them break your stride
There is light on the other side
And you'll see all the raindrops falling behind
Make it out tonight
it's a revolution

CL!!!