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