show / hide menu

TrimStart

This function will remove the first character specified in a string.

Syntax:

TrimStart(Value,TrimValue)

Value is the input String from which the first character has to be trimmed off. “TrimValue” should be the first character that needs to be removed from the given input.

Examples:

TrimStart(TextBox1.Value,”r”)

TextBox1.value=rear

The function will return the value ear.