Difference between revisions of "NXSL:ltrim"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Removes blanks (space and tab characters) from the left size of specified string. == Syntax == ltrim(''string''); == Parameters == :{| |- | ''string'' || Sourc...")
 
m
Line 1: Line 1:
__NOTOC__
__NOTOC__
Removes blanks (space and tab characters) from the left size of specified string.
Removes blanks (space and tab characters) from the left side of specified string.




Line 23: Line 23:
== Examples ==
== Examples ==


  ltrim("  abc  ")  -> "abc  "
  ltrim("  abc def ")  -> "abc def "

Revision as of 22:55, 19 December 2012

Removes blanks (space and tab characters) from the left side of specified string.


Syntax

ltrim(string);


Parameters

string Source string.


Return Value

Source string with blanks at the left side removed.


Examples

ltrim("  abc def  ")  	->	"abc def  "