how can we get the last 5 charecter of string?

how can we get the last 5 charecter of string?

for eg

9991901628387

i want28387

thanks

[169 byte] By [AtherAbbas] at [2007-12-24]
# 1

Dim s As String = "9991901628387"

Dim lastFive As String = s.Substring(s.Lengh - 5)

or use the Right function from the VB library.

MattiasSj?gren at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic General...