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#
|
3
|
|||||||
|
|
|
From MSDN
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 |
|||
|
|
|
|
|
||
|
|
|
|
This should work:
|
|||
|
|
|
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.
|
||
|
|
|
|
IIRC the ASCII value is the number of the lower 7 bits of the unicode number. |
||
|
|
|
|
If you want the charcode for each character in the string, you could do something like this:
Need a bit more information in the post to be more helpful. |
||
|
|