C
cmdolcet69
How do I setup a string command to trim the length of the string -1
I need to get ride of the last character in my string
I need to get ride of the last character in my string
dim strText as string
strText = "abcdefgh"
strText = mid(strText,1,strText.length-1)
"cmdolcet69" <[email protected]> schreef in bericht
How do I setup a string command to trim the length of the string -1
I need to get ride of the last character in my string
Why not do it the .NET way?
newString = oldString.SubString(0, oldString.Length - 1)
If Not string.IsNullOrEmpty(oldString) AndAlso oldString.Length>1 then
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.