C#组合框项目编号乘法

时间:2015-02-09 00:25:30

标签: c# combobox windows-forms-designer

我手动复制excel到字符串集合(ComboBox)2列,1是帐户(456939493)编号,第二个是小数点百分比(0.001)。

this.percent.Items.AddRange(new object[] {
        "456939493 0.001 ",
        "453949343 0.00001",

操作

double Pairdecimal = Convert.ToDouble(percent.SelectedValue);

执行乘法运算时,它不读取小数,只生成数字零。

如何从字符串集合(ComboBox)中仅获取小数而不是帐号。

3 个答案:

答案 0 :(得分:1)

您可以拆分字符串,然后将第一部分转换为int。像这样:

var splitStrings = percent.SelectedValue.Split();
var firstValue = Convert.ToInt32(splitStrings[0]); //int
var secondValue = Convert.ToDouble(splitStrings[1]); //double

答案 1 :(得分:1)

有很多方法可以做到这一点,而swistak提供了一个很好的答案。 您需要先将字符串分成其组成部分,然后将所需的部分转换为double(或十进制)。

        string text = "456939493 0.001 ";

        //one option
        string[] textArray = text.Split(' ');
        double num1 = Convert.ToDouble( textArray[1]);

        //another option
        double num2 = Convert.ToDouble(text.Substring(10));  
       // this assumes the account number is always the same length

答案 2 :(得分:0)

感谢您的回答! 我接受了两个建议/答案,并使其适用于我的代码。

string[] str = currpair.Text.Split(); //from Ric Gaudet

然后我也拿了

double secondValue = Convert.ToDouble(str[1]); //from swistak

再次感谢我的问题解决了。 现在我可以将comboBox值相乘。