VBScript LCase 함수


❮ 완전한 VBScript 참조

LCase 함수는 지정된 문자열을 소문자로 변환합니다.

팁: UCase 함수도 살펴보세요.

통사론

LCase(string)

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

실시예 1

<%

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

%>

위 코드의 출력은 다음과 같습니다.

this is a beautiful day!

실시예 2

<%

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

%>

위 코드의 출력은 다음과 같습니다.

this is a beautiful day!

❮ 완전한 VBScript 참조