I want to get the last 5 digits/characters from a string. For example, from \"I will be going to school in 2011!\", I would like to get \"2011!\".<
\"I will be going to school in 2011!\"
\"2011!\"
Dim a As String = Microsoft.VisualBasic.right("I will be going to school in 2011!", 5) MsgBox("the value is:" & a)