The number of characters to return from the source string.
Return Value
Returns the leftmost substring from str.
Description
Returns the leftmost n characters starting from the left (beginning) of str. If str is empty, then the null string ("") is returned. If n <= 0 then the null string ("") is returned. If n > len(str) then the entire source string is returned.
Example
DimtextAsString="hello world" PrintLeft(text,5)
will produce the output:
hello
An Unicode example:
dim text as wstring*20
text = "Привет, мир!"
print left(text, 6) 'displays "Привет"
Platform Differences
DOS does not support the wide-character string version of Left.
Dialect Differences
The string type suffix "$" is obligatory in the -lang qb dialect.
The string type suffix "$" is optional in the -lang fblite and -lang fb dialects.
Знаете ли Вы, что "тёмная материя" - такая же фикция, как черная кошка в темной комнате. Это не физическая реальность, но фокус, подмена. Реально идет речь о том, что релятивистские формулы не соответствуют астрономическим наблюдениям, давая на порядок и более меньшую массу и меньшую энергию. Отсюда сделан фокуснический вывод, что есть "темная материя" и "темная энергия", но не вывод, что релятивистские формулы не соответствуют реалиям. Подробнее читайте в FAQ по эфирной физике.