How do you convert a string to ascii to binary in C#?(如何在 C# 中将字符串转换为 ascii 到二进制?)
问题描述
不久前(高中一年级),我请一位非常优秀的 C++ 程序员,他是一名大三学生,制作了一个将字符串转换为二进制的简单应用程序.他给了我以下代码示例:
A while back (freshman year of high school) I asked a really good C++ programmer who was a junior to make a simple application to convert a string to binary. He gave me the following code sample:
void ToBinary(char* str)
{
char* tempstr;
int k = 0;
tempstr = new char[90];
while (str[k] != ' ')
{
itoa((int)str[k], tempstr, 2);
cout << "
" << tempstr;
k++;
}
delete[] tempstr;
}
所以我想我的问题是如何在 C# 中获得与 itoa 函数等效的函数?或者如果没有,我怎么能达到同样的效果?
So I guess my question is how do I get an equivalent to the itoa function in C#? Or if there is not one how could I achieve the same effect?
推荐答案
这在 C# 中很容易做到.
This is very easy to do with C#.
var str = "Hello world";
With LINQ
foreach (string letter in str.Select(c => Convert.ToString(c, 2)))
{
Console.WriteLine(letter);
}
Pre-LINQ
foreach (char letter in str.ToCharArray())
{
Console.WriteLine(Convert.ToString(letter, 2));
}
这篇关于如何在 C# 中将字符串转换为 ascii 到二进制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C# 中将字符串转换为 ascii 到二进制?
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01