Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Mode%=0 or omitted: LTRIM$ returns a string value without leading spaces.
  2. Mode%=1: LTRIM$ returns a string value without leading spaces and CrLf's. (Carriage return Line feeds)
  3. String Expression returns a string value containing N characters, where N=>0. "NullString" is considered as a DETERMINED empty DETERMINED empty string.

Remarks

Examples

Example1: Mode 0

LTRIM$("
Qnowledge Wageningen     ", 0)

Returns

"
Qnowledge Wageningen"

...