Functions > String >


StringLower

Convertit une cha�ne en minuscules.

StringLower ( "string" )

Param�tre

string La cha�ne � convertir.

Valeur de retour

Retourne la cha�ne convertie en minuscules.

En relation

StringCompare, StringInStr, StringIsAlNum, StringIsAlpha, StringIsASCII, StringIsLower, StringIsSpace, StringIsUpper, StringIsXDigit, StringLeft, StringLen, StringMid, StringReplace, StringRight, StringSplit, StringTrimLeft, StringTrimRight, StringUpper

Exemple

#include <MsgBoxConstants.au3>

Local $sString = StringLower("Ceci est une cha�ne") ; Convertit cette cha�ne en minuscules.
MsgBox($MB_SYSTEMMODAL, "", "StringLower retourne: " & $sString)