VBScript LCase- funksie


❮ Voltooi VBScript-verwysing

Die LCase-funksie skakel 'n gespesifiseerde string om na kleinletters.

Wenk: Kyk ook na die UCase-funksie.

Sintaksis

LCase(string)

Parameter Description
string Required. The string to be converted to lowercase

Voorbeelde

Voorbeeld 1

<%

txt="THIS IS A BEAUTIFUL DAY!"
response.write(LCase(txt))

%>

Die afvoer van die kode hierbo sal wees:

this is a beautiful day!

Voorbeeld 2

<%

txt="This is a BEAUTIFUL day!"
response.write(LCase(txt))

%>

Die afvoer van die kode hierbo sal wees:

this is a beautiful day!

❮ Voltooi VBScript-verwysing