Need help with C#

34qwredsfvc

Active member
Joined
Mar 23, 2013
Messages
50
Reaction score
4
I need a code that can find numbers in strings and convert them into words. 1-one 1023 - one thousand twenty three, etc. In c-sharp.
 

Wut

Well-known member
Joined
Mar 1, 2013
Messages
338
Reaction score
1
Well, what is the separator? whitespace?
 

Wut

Well-known member
Joined
Mar 1, 2013
Messages
338
Reaction score
1
Give a example

For a string as-db123;5sdj1jdd2s78
You want to get the integer array of 123,5,1,2,78 , am I right?
 

Wut

Well-known member
Joined
Mar 1, 2013
Messages
338
Reaction score
1
how to convert the int to a word though

int idk=100;
String lalala=idk.ToString();


Search on google first lol
 
Top