如何在C#中获取字符串的ASCII值 [英] How to get ASCII value of string in C#

查看:83
本文介绍了如何在C#中获取字符串的ASCII值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 C# 中获取字符串中字符的 ASCII 值.

I want to get the ASCII value of characters in a string in C#.

如果我的字符串值为9quali52ty3",我想要一个包含 11 个字符中每个字符的 ASCII 值的数组.

If my string has the value "9quali52ty3", I want an array with the ASCII values of each of the 11 characters.

如何在 C# 中获取 ASCII 值?

How can I get ASCII values in C#?

推荐答案

来自 MSDN

string value = "9quali52ty3";

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

您现在有一个字节的 ASCII 值数组.我得到以下信息:

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

5711311797108105535011612151

57 113 117 97 108 105 53 50 116 121 51

这篇关于如何在C#中获取字符串的ASCII值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆