在 C# 中将二进制数的字符串表示形式转换为 int

Convert string representation of binary number to int in C#(在 C# 中将二进制数的字符串表示形式转换为 int)
本文介绍了在 C# 中将二进制数的字符串表示形式转换为 int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个由八个 1 和 0 组成的字符串,中间有空格,例如1 0 0 1 1 0 1 0",我想将其转换为 int.有没有一种简单的方法可以做到这一点?我觉得某种 linq 解析可以做到这一点,但我什至不知道一旦找到这些字符该怎么处理.

I have a string of eight 1s and 0s with spaces in between, something like "1 0 0 1 1 0 1 0", that I want converted in to an int. Is there a simple way to do this? I feel like some kind of linq parsing would do it, but I don't even know what to do with the characters once I find them.

推荐答案

您不需要任何 LINQ.
Convert.ToInt*() 采用可选的 fromBase 参数,该参数必须为 2、8、10 或 16.

You don't need any LINQ.
Convert.ToInt*() takes an optional fromBase parameter, which must be 2, 8, 10, or 16.

Convert.ToInt32("1 0 0 1 1 0 1 0".Replace(" ", ""), 2)

这篇关于在 C# 中将二进制数的字符串表示形式转换为 int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Custom Error Queue Name when using EasyNetQ for RabbitMQ?(使用 EasyNetQ for RabbitMQ 时自定义错误队列名称?)
How to generate password_hash for RabbitMQ Management HTTP API(如何为 RabbitMQ 管理 HTTP API 生成密码哈希)
Rabbitmq Ack or Nack, leaving messages on the queue(Rabbitmq Ack 或 Nack,将消息留在队列中)
Setup RabbitMQ consumer in ASP.NET Core application(在 ASP.NET Core 应用程序中设置 RabbitMQ 消费者)
Specify Publish timeouts in mass transit(指定公共交通中的发布超时)
RabbitMQ asynchronous support(RabbitMQ 异步支持)