Click here to Skip to main content
15,894,460 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI...
I have a databas e that has a col for alphabet and a col for nums
for example: a means 0
b means 1 and so on...
now I want to convert my string from a text box to int
for example: "ab" means: 01 and...
can anyone help me that what should I do?!

I want this:
a=0
b=1
.
.
.
z=25
Posted

1 solution

Hi, you can try this:
C#
// Get string from textbox
string text = "L";

// Convert first character to lower case letter
char character = char.ToLower(text[0]);

// Get character code
int number = character - 'a';
 
Share this answer
 
v2
Comments
amir.nazarizadeh 26-Feb-13 2:32am    
it worked!
thanks and thanks Matej...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900