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