Difference between revisions of "NXSL:ltrim"

From NetXMS Wiki
Jump to navigation Jump to search
m
Line 10: Line 10:
== Parameters ==
== Parameters ==


:{|
:{| class="wikitable"
|-
|-
| ''string'' || Source string.
| ''string'' || Source string.

Revision as of 13:21, 22 November 2017

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  "