vb.net delete last caharacter from string code example
Example: how to remove characters from the end of a string visual basic
myString = myString.Substring(0, myString.length - 1)
myString = myString.Substring(0, myString.length - 1)