trimstart(
TEXT
,
COUNT
)

The trimstart( function removes one or more characters from the start of the text.


Parameters

This function has two parameters:

text – the original text.

count – the number of characters to remove.


Description

Removes characters from the start of the text. For example trimstart(text,2) removes the first two characters from the text.

trimstart("abcd",1) ☞ bcd
trimstart("abcd",2) ☞ cd

Note: This function is equivalent to:

thetext[count+1,-1]

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.