EN
C# / .NET - string to byte array
1 points
In C# / .NET it is possible to make string conversion to byte array in few ways.
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.UTF8.GetBytes(text);
6
7
// test
8
9
string product = Encoding.UTF8.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text,-10} {product,-10} {status,-10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 £100 CORRECT
3
4
Bytes: 194 163 49 48 48
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.ASCII.GetBytes(text);
6
7
// test
8
9
string product = Encoding.ASCII.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text, -10} {product, -10} {status, -10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 ?100 INCORRECT
3
4
Bytes: 63 49 48 48
Note: £ sign can not be encoded with ASCII because it is described by more than 7 bits.
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.UTF7.GetBytes(text);
6
7
// test
8
9
string product = Encoding.UTF7.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text,-10} {product,-10} {status,-10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 £100 CORRECT
3
4
Bytes: 43 65 75 77 45 49 48 48
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.UTF32.GetBytes(text);
6
7
// test
8
9
string product = Encoding.UTF32.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text,-10} {product,-10} {status,-10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 £100 CORRECT
3
4
Bytes: 163 0 0 0 49 0 0 0 48 0 0 0 48 0 0 0
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.Unicode.GetBytes(text);
6
7
// test
8
9
string product = Encoding.Unicode.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text,-10} {product,-10} {status,-10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 £100 CORRECT
3
4
Bytes: 163 0 49 0 48 0 48 0
xxxxxxxxxx
1
string text = "£100";
2
3
// encoding (string to bytes conversion)
4
5
byte[] data = Encoding.BigEndianUnicode.GetBytes(text);
6
7
// test
8
9
string product = Encoding.BigEndianUnicode.GetString(data);
10
string status = (text == product ? "CORRECT" : "INCORRECT");
11
12
Console.WriteLine($"{"BEFORE",-10} {"AFTER",-10} {"STATUS",-10}");
13
Console.WriteLine($"{text,-10} {product,-10} {status,-10}");
14
Console.WriteLine();
15
16
// bytes
17
18
Console.Write("Bytes: ");
19
20
foreach (byte entry in data)
21
Console.Write(entry + " ");
22
23
Console.WriteLine();
Output:
xxxxxxxxxx
1
BEFORE AFTER STATUS
2
£100 £100 CORRECT
3
4
Bytes: 0 163 0 49 0 48 0 48