vote up 2 vote down star
3

I want to get Ascii Value of string in C#

My string will have value like "9quali52ty3" this ,so if I just convert it to integer I don't get ascii values of numbers that are in the string

Can any one please help me with getting ascii values in C#

flag

Do you mean you only want the alphabetic characters and not the digits? So you want "quality" as a result? Cause then talking about ASCII makes little sense. – Lars Truijens Dec 30 '08 at 16:35
I want Ascii of each character from that string ,Ascii of digits as well as ascii of word "quality" – RBS Dec 30 '08 at 16:36
What you mean is that you want the numeric ASCII value of each character in the string, assuming the entire string can be represented in ASCII. Your current wording is very confusing. – bzlm Jul 24 at 8:14

6 Answers

vote up 15 vote down check

From MSDN

string value = "9quali52ty3";

// Convert the string into a byte[].
byte[] asciiBytes = Encoding.ASCII.GetBytes(value);

You now have an array of the ASCII value of the bytes. I got the following:

57 113 117 97 108 105 53 50 116 121 51

link|flag
vote up 2 vote down
string s = "9quali52ty3";
foreach(char c in s)
{
  Console.WriteLine((int)c);
}
link|flag
vote up 6 vote down

This should work:

string s = "9quali52ty3";
byte[] ASCIIValues = Encoding.ASCII.GetBytes(s);
foreach(byte b in ASCIIValues) {
    Console.WriteLine(b);
}
link|flag
The first one produces the wrong results if non ASCII chars are used. The second one is correct tho' – Lars Truijens Dec 30 '08 at 16:44
vote up 1 vote down

Do you mean you only want the alphabetic characters and not the digits? So you want "quality" as a result? You can use Char.IsLetter or Char.IsDigit to filter them out one by one.

string s = "9quali52ty3";
StringBuilder result = new StringBuilder();
foreach(char c in s)
{
  if (Char.IsLetter(c))  
    result.Add(c);
}
Console.WriteLine(result);  // quality
link|flag
vote up 0 vote down
string text = "ABCD";
for (int i = 0; i < text.Length; i++)
{
  Console.WriteLine(text[i] + " => " + Char.ConvertToUtf32(text, i));
}

IIRC the ASCII value is the number of the lower 7 bits of the unicode number.

link|flag
vote up 0 vote down

If you want the charcode for each character in the string, you could do something like this:

char[] chars = "9quali52ty3".ToCharArray();

Need a bit more information in the post to be more helpful.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.