Syntax
Public Sub StringTrimLeft(ByRef stringVar As String)
Description
This sub procedure is used to remove the blank spaces on the left side of agiven string.
Parameters
Key | Description |
stringVar | String value to remove the left blank space from it. |
Return value
No Returned value.
Sample
Public Sub main () Dim STR STR =HELLO StringTrimLeft (STR) End sub
See Also