Saltar al contenido

vba string ejemplo de código que distingue entre mayúsculas y minúsculas

Rodrigo, parte de este equipo, nos ha hecho el favor de crear esta crónica porque conoce a la perfección dicho tema.

Ejemplo 1: caso de ignorar vba

'Removes case sensitivityOption Compare Text			' a < B'Adds case sensitivityOption Compare Binary		' A < B < a < b'Compare
Debug.Print StrComp(string1, string2, vbUseCompareOption)'Microsoft Access only
Debug.Print StrComp(string1, string2, vbBinaryCompare)'case sensitive
Debug.Print StrComp(string1, string2, vbTextCompare)'case insensitive

Ejemplo 2: Excel vba Comparación de cadenas que no distingue entre mayúsculas y minúsculas

MsgBox LCase(str1)= LCase(str2)'Another option is to use vbTextCompare with the VBA StrComp() function:

MsgBox 0= StrComp(str1, str2, vbTextCompare)

StrComp() will return-1if str1 is less than str2.
StrComp() will return0if str1 is equal to str2.
StrComp() will return1if str1 is greater than str2.'The above StrComp() examples are for when the optional 3rd argument'is given as vbTextCompare. This results in a case-insensitive comparison.'However, the StrComp() function defaults to vbBinaryCompare which'results in case-SENSITVE comparisons.'''

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)


Tags : /

Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *