Difference between revisions of "MC-Basic:LEFT$"
m (Text replace - "''<expression>''" to "<''expression''>") |
|||
Line 25: | Line 25: | ||
''<return value>'': String<br> | ''<return value>'': String<br> | ||
''<string>'': String<br> | ''<string>'': String<br> | ||
− | '' | + | <''expression''>: Long |
|RANGE= | |RANGE= | ||
''<return value>'': String<br> | ''<return value>'': String<br> | ||
''<string>'': String<br> | ''<string>'': String<br> | ||
− | '' | + | <''expression''>: 0 to MaxLong |
|UNITS= | |UNITS= |
Revision as of 08:04, 17 March 2014
The LEFT$ returns the specified number of characters from the left-hand side of the string.
In UTF-8 supporting versions 4.5.1 and higher NULL characters are no longer cut
out from strings, resulting in a different behavior:
Len of Chr$(0) is 1:
In former versions NULL characters could not appear in the middle of strings,
since theconcationation process cut these characters from the resulting string.
Syntax
LEFT$(<string>, <expression>)
Availability
All versions
Type
<return value>: String
<string>: String
<expression>: Long
Range
<return value>: String
<string>: String
<expression>: 0 to MaxLong
Scope
Configuration, Task or Terminal
Limitations
Read-Only
Examples
-->Test=”This string is to long”
-->PRINT LEFT$(Test,4)
This