字符串转换重新二进制数presentation在C#中为int [英] Convert string representation of binary number to int in C#

查看:129
本文介绍了字符串转换重新二进制数presentation在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)

这篇关于字符串转换重新二进制数presentation在C#中为int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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