|
Length
int
Length(string
string)
Return Value
A count of the bytes in the
string.
Parameters
string
– a
string.
Example
The following
example demonstrates the use of Length.
# Example for Length
strings
="Hello,
World"
intlength
length =
Length(
s )
Println("String
length is ",
length)
Output of the example
script:
String
length is 12
|