Home / lang / ltrim 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  mk  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History
 
LTrim$
Syntax
sResult = LTrim$ ( sExpr AS String ) AS String
sResult = LTrim ( sExpr AS String ) AS String

Strips white spaces from the left of the String sExpr.

A white space is any character whose ASCII code is strictly lower than 32.

Examples

PRINT "<"; LTrim$("Gambas"); ">"

&lt;Gambas>
PRINT "<"; LTrim$("  Gambas   "); ">"

&lt;Gambas >

See also

String Functions  RTrim$  Trim$