Lower case
A função LowerCase converte todos os caracteres de uma string para letras minúsculas.
Sintaxe
Function LowerCase(const S: string): string;
Parâmetros
| Nome | Tipo | Descrição |
|---|---|---|
| S | String | A string que será convertida para minúsculas. |
Exemplos
var textoOriginal, textoMinusculo: string; begin textoOriginal := 'Hello, World!'; textoMinusculo := LowerCase(textoOriginal); // Retorna 'hello, world!' Informacao(textoMinusculo); end.