How can you convert a string into a "Number", such that it always is the same result?
So, if you have the String: 142ST-12A, after "Converting" it you would end up with a number (all digits are 0-9)?
so my vision is:
Dim OrigStr as String = 142ST-12A
Dim NewNum as Long
NewNum = SomeConversionThing(OrigStr)
Thanks
So, if you have the String: 142ST-12A, after "Converting" it you would end up with a number (all digits are 0-9)?
so my vision is:
Dim OrigStr as String = 142ST-12A
Dim NewNum as Long
NewNum = SomeConversionThing(OrigStr)
Thanks