28

How do I convert each letter in a string to its ASCII character value?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Student
  • 3,469
  • 7
  • 35
  • 42

8 Answers8

30

.NET stores all strings as a sequence of UTF-16 code units. (This is close enough to "Unicode characters" for most purposes.)

Fortunately for you, Unicode was designed such that ASCII values map to the same number in Unicode, so after you've converted each character to an integer, you can just check whether it's in the ASCII range. Note that you can use an implicit conversion from char to int - there's no need to call a conversion method:

string text = "Here's some text including a \u00ff non-ASCII character";
foreach (char c in text)
{
    int unicode = c;
    Console.WriteLine(unicode < 128 ? "ASCII: {0}" : "Non-ASCII: {0}", unicode);
}
Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194
24

For Any String try this:

string s = Console.ReadLine();
foreach( char c in s)
{
    Console.WriteLine(System.Convert.ToInt32(c));
}
Console.ReadKey();
Simon
  • 13,173
  • 14
  • 66
  • 90
Student
  • 3,469
  • 7
  • 35
  • 42
4

Try Linq:

Result = string.Join("", input.ToCharArray().Where(x=> ((int)x) < 127));

This will filter out all non ascii characters. Now if you want an equivalent, try the following:

Result = string.Join("", System.Text.Encoding.ASCII.GetChars(System.Text.Encoding.ASCII.GetBytes(input.ToCharArray())));
user2956314
  • 174
  • 4
2
byte[] bytes = Encoding.ASCII.GetBytes(inputString);

In the ASCII enconding each char is represented with 1 byte, however in C# the string type uses 2 bytes per char.

Hence, if you want to keep an ASCII "string" in memory, the most efficient way is to use a byte array. You can always convert it back to string, but remember it will double in size in memory!

string value = new ASCIIEncoding().GetString(bytes);
Marco Merola
  • 131
  • 2
  • 4
1

I think this code may be help you:

string str = char.ConvertFromUtf32(65)
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
r12
  • 59
  • 4
0

Use Convert.ToInt32() for conversion. You can have a look at How to convert string to ASCII value in C# and ASCII values.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Akshatha
  • 599
  • 2
  • 10
  • 26
0

You can do it by using LINQ-expression.

  public static List<int> StringToAscii(string value)
  {
        if (string.IsNullOrEmpty(value))
            throw new ArgumentException("Value cannot be null or empty.", nameof(value));

        return value.Select(System.Convert.ToInt32).ToList();
  } 
0

Here is an extension method based on Jon Skeet's answer:

    public static string ConvertUnicodeStringToAscii(this string text)
    {
        var sb = new StringBuilder();
        foreach (char c in text)
        {
            int unicode = c;
            if (unicode < 128)
            {
                sb.Append(c);
            }
        }
        return sb.ToString();
    }
dodgy_coder
  • 12,407
  • 10
  • 54
  • 67