首页 > lang > lcase 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh eo
前一个  下一个  编辑  重命名  撤销  搜索  管理  
文档  
警告! 该页面未翻译。  参见英文版 
LCase$
Result = LCase$ ( Expr AS String ) AS String
Result = Lower$ ( Expr AS String ) AS String

Returns the String Expr converted to lower case.

Example

PRINT LCase$("Gambas ALMOST Means BASIC !")

gambas almost means basic !

This function does not work with UTF-8 strings. It works only if all characters codes are ASCII characters in the range 1 to 127.

print lower$("Jürgen")

jÃŒrgen

Use String.LCase instead.

参见

String Functions