Start Back Next End
  
ZBasic System Library
171
ZBasic Microcontrollers
LCase
Type
Function returning String
Invocation
LCase(str) 
Parameter
Method
Type
Description
str
ByVal
String
The string to be changed to lower case.
Discussion
This function returns a new string containing the same characters as the passed string except that all
upper case characters will be replaced with lower case characters.
Example
Dim s as String, s1 as String
s = "Hello, world!"
s2 = LCase(s)
' the result will be "hello, world!"
See Also
Previous page Top Next page