**FUNCTION:** `LCase(string) / UCase(string)`
**Description**
Convertit une chaîne en minuscules (`LCase`) ou majuscules (`UCase`).
**Syntax**
`LCase(string) / UCase(string)`
**Paramètres**
– `string` : Chaîne source.
**Retour**
Chaîne convertie.
**Exemples**
« `vb
WScript.Echo LCase(« ABC »)
WScript.Echo UCase(« abc »)
« `
**Output :** `abc ; ABC`
**Voir aussi**
`StrComp`, `Replace`