I have some sentences like below :
i have a river
he is liar
great
hello miss
there was a river in this area
Now i want to extract last 10 characters and have this result
ve a river
he is liar
great
hello miss
this area
I have tried to achieve the desired result using this
mystring.Substring(mystring.Length - 10)
The above code works fine for the strings of length higher than 9, but fails for great
How to overcome this problem using fewest line of vb.net code?