Split method?

Hai guys,
I have numbers like
00002
00035
00225
01705
I want to split them like
2
35
225
1705
please help on this

@Arjun_Reddy Have you tried using Cint(0002) ?

3 Likes

With MyString as you string:

MyString.TrimStart("0"C)

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.