web-dev-qa-db-ja.com

C#で文字列のASCII値を取得する方法

C#の文字列の文字のASCII値を取得したい。

文字列の値が「9quali52ty3」の場合、11文字のそれぞれのASCII値を持つ配列が必要です。

C#でASCII値を取得するにはどうすればよいですか?

93
RBS

MSDN から

string value = "9quali52ty3";

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

これで、バイトのASCII値の配列ができました。私は次のものを手に入れました:

57113117 97108105 53 50116121 51

178
Brig Lamoreaux
string s = "9quali52ty3";
foreach(char c in s)
{
  Console.WriteLine((int)c);
}
31
LeppyR64

これは動作するはずです:

string s = "9quali52ty3";
byte[] ASCIIValues = Encoding.ASCII.GetBytes(s);
foreach(byte b in ASCIIValues) {
    Console.WriteLine(b);
}
21
jason

数字ではなくアルファベット文字だけが必要なのですか?結果として「品質」が必要ですか? Char.IsLetterまたはChar.IsDigitを使用して、それらを1つずつ除外できます。

string s = "9quali52ty3";
StringBuilder result = new StringBuilder();
foreach(char c in s)
{
  if (Char.IsLetter(c))  
    result.Add(c);
}
Console.WriteLine(result);  // quality
6
Lars Truijens
byte[] asciiBytes = Encoding.ASCII.GetBytes("Y");
foreach (byte b in asciiBytes)
{
    MessageBox.Show("" + b);
}
3
moleatom
string value = "mahesh";

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

for (int i = 0; i < value.Length; i++)


    {
        Console.WriteLine(value.Substring(i, 1) + " as ASCII value of: " + asciiBytes[i]);
    }
3
mahesh

このプログラムは複数の文字を受け入れ、それらのASCII値を出力します。

using System;
class ASCII
{
    public static void Main(string [] args)
    {
        string s;
        Console.WriteLine(" Enter your sentence: ");
        s = Console.ReadLine();
        foreach (char c in s)
        {
            Console.WriteLine((int)c);
        }
    }
}
3
M hasan

次を使用して BOM を削除できます。

//Create a character to compare BOM
char byteOrderMark = (char)65279;
if (sourceString.ToCharArray()[0].Equals(byteOrderMark))
{
    targetString = sourceString.Remove(0, 1);
}
2
Md Shahzad Adil
string text = "ABCD";
for (int i = 0; i < text.Length; i++)
{
  Console.WriteLine(text[i] + " => " + Char.ConvertToUtf32(text, i));
}

正しく覚えていれば、ASCII値は nicode 数値の下位7ビットの数です。

2
Rauhotz

文字列の各文字の文字コードが必要な場合は、次のようなことができます。

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

以前のレスポンダーは質問に答えましたが、タイトルが私に期待させる情報を提供していません。 1文字の文字列を返すメソッドがありましたが、16進数に変換できる文字が必要でした。次のコードは、他の人に役立つことを期待して私が見つけると思ったことを示しています。

  string s = "\ta£\x0394\x221A";   // tab; lower case a; pound sign; Greek delta;
                                   // square root  
  Debug.Print(s);
  char c = s[0];
  int i = (int)c;
  string x = i.ToString("X");
  c = s[1];
  i = (int)c;
  x = i.ToString("X");
  Debug.Print(c.ToString() + " " + i.ToString() + " " + x);
  c = s[2];
  i = (int)c;
  x = i.ToString("X");
  Debug.Print(c.ToString() + " " + i.ToString() + " " + x);
  c = s[3];
  i = (int)c;
  x = i.ToString("X");
  Debug.Print(c.ToString() + " " + i.ToString() + " " + x);
  c = s[4];
  i = (int)c;
  x = i.ToString("X");
  Debug.Print(c.ToString() + " " + i.ToString() + " " + x);

上記のコードは、イミディエイトウィンドウに次を出力します。

a£Δ√

97 61

£163 A3

Δ916 394

√8730 221A

2
Tony Dallimore

またはLINQで:

string value = "9quali52ty3";

var ascii_values = value.Select(x => (int)x);

var as_hex = value.Select(x => ((int)x).ToString("X02"));

1
ZagNut

昔ながらの簡単な方法はいかがですか?

    public int[] ToASCII(string s)
    {
        char c;
        int[] cByte = new int[s.Length];   / the ASCII string
        for (int i = 0; i < s.Length; i++)
        {
            c = s[i];                        // get a character from the string s
            cByte[i] = Convert.ToInt16(c);   // and convert it to ASCII
        }
        return cByte;
    }
0
F. Harthoorn

C#の文字列の文字のASCII値を取得したい。

誰もがこの構造で答えを与えます。文字列の値が「9quali52ty3」の場合、11文字のそれぞれのASCII値を持つ配列が必要です。

しかし、コンソールでは率直に動作するため、文字を取得し、間違っている場合はASCIIコードを出力するので、答えを修正してください。

 static void Main(string[] args)
        {
            Console.WriteLine(Console.Read());
            Convert.ToInt16(Console.Read());
            Console.ReadKey();
        }
0
MA Nadeem