198
Platforms
©2000-2008 Tibbo Technology Inc.
dim
s
as
string
s = bin(2863311530)
' result will be '&b10101010101010101010101010101010'
Left Function
Function:
Returns len leftmost characters of a string sourcestring.
Syntax:
left(byref sourcestr as string, len as byte) as string
See Also:
Part
Description
sourcestr
String from which to take len leftmost characters.
len
Number of characters to take.
Details
---
Examples
ss = left(
"ABCDE"
,
3
)
' result will be 'ABC
Len Function
Function:
Returns the length of (number of characters in) the string
sourcestr.
Syntax:
len(byref sourcestr as string) as byte
See Also:
---
Part
Description
sourcestr
String whose length needs to be calculated.
Details
---
Examples
x = len(
"ABC"
)
' result will be 3
205
202