Hey guys, got another crazy idea to throw at you :)
I have a string that is comprised from two separate unique numbers (Only Numbers, that are random lengths)
This is then converted into a character array in which all numbers are separated into linear positions in the array
I now want to be able to create an algorithm that states that each number in the array is converted from it's integer form (e.g. 121) to it's alphabetical form (e.g. onetwoone).
Hope this makes sense and I appreciate any help :)
I have a string that is comprised from two separate unique numbers (Only Numbers, that are random lengths)
Code:
Dim PrePhrase As String = DatabaseModule.UserID + DatabaseModule.ModelID
Code:
Dim charArr() As Char = PrePhrase.ToCharArray()
Hope this makes sense and I appreciate any help :)