Convert-to-Lowercase-String
Command Description
Convert to Lowercase String
Command Prototype
sRet = LCase(sText)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
sText | True | string | "" | The string to be operated |
return
sRet,The variable used to save the output of the command.
Demo
TracePrint("----------------------Convert string to lowercase------------------- -----")
//-------------------------------------------------------------------------------
//[Remarks] Convert the string to lowercase.
//Input parameter 1:
// sText--A string to operate on.
//out parameters:
// sRet--The variable to which the output of the function call is saved.
//
//Command prototype: sRet=LCase(sText)
//-------------------------------------------------------------------------------
sRet = LCase ("UiBot")
TracePrint (sRet)