How can you remove the last character from a string variabler?
For example, change MikeX to Mike as shown below.
Thanks.
Regards,
Mike
"Don’t get suckered in by the comments – they can be terribly misleading. Debug
only code. – Dave Storer."
For example, change MikeX to Mike as shown below.
Code:
[blue]Dim[/blue] strName [blue]as String[/blue]
strName = "MikeX"
[b]strName after removing last character = "Mike"[/b]
Thanks.
Regards,
Mike
"Don’t get suckered in by the comments – they can be terribly misleading. Debug
only code. – Dave Storer."