如何将字符串(长度为1)转换为相关的ASCII码(0-255)的int值?
在我的代码中,我有一个长度为 1 的字符串, 我想将其转换为与(扩展)ASCII 代码(0-255)的字符值关联的 int。
例如:
"A"->65
"f"->102
In my code I have A string with length 1,
I want to convert it to the int associated with the character value of (extended) ASCII code (0-255).
For example:
"A"->65
"f"->102
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,如果您确实需要获取字符串文字“A”的 ascii 代码,而不是变量 A 引用的字符串:
Or, if you really need to get the ascii code for the string literal "A", instead of a string referenced by variable A:
你是说
char
?您真正需要做的就是将角色转换为 int。输出
65
这是更全面的代码。
You mean
char
? All you really need to do is cast the character to an int.Outputs
65
Here's a more comprehensive code.