C# 字符串操作:在前段未知,后几位是数字的字符串中,让后几位数字可配合NumericUpDown计算

字符串操作:在前段未知,后几位是数字的字符串中,让后几位数字可配合NumericUpDown计算

遇到一个隐藏问题,似乎是前面程序员未解决的。找了下网上也没有类似的,好吧,自己写。

需求

输入字符串。该字符串由数字和字母组成,后几位必为数字,需要取数字能自加,然后显示。

分析

使用TextBox和NumericUpDown控件可以实现显示与加减,需要将字符串一分为二,截取前部分包含非数字,后部分单纯数字。计算数字,再进行拼接。

在_TextChanged事件中分割字符串,获取NumericUpDown.Value值;在NumericUpDown的_ValueChanged事件中拼接字符串。

问题

NumericUpDown.Value是Decimal类型,正确截取后几位数字之后,如果是"0000XX"形式,转换为Decimal就只有"XX"了,和需求不符。想到以下几种解决方案:

  • 使用占位符或转换回字符串时规定数字位数,这样在规定位数内会自动补0

  • 给包含非数字的前部字符串后面填充"0",长度为截取的后部字符串长度,然后在拼接时,在前部字符串尾用NumericUpDown.Value替换相应长度的"0"

占位符的使用如下:

int a = 1598;   
// 0 描述:占位符,如果可能,填充位
string str = string.Format("{0:000000}",a);
// 输出 :001598
string str0 = string.Format("{0,10:D8}",a);
// 输出 :00001598

使用占位符需要知道数字位数,位数在使用中并非固定,那只能用参数传递位数。但是在Micro文档中也没有找到可以传入位数的方法,所以只能使用更麻烦的第二种解决方案了。

实现

//TextChanged事件,在文本框变化时触发
private void tbx_Vendor_SN_TextChanged(object sender, EventArgs e)
{
    //string pattern_alphabet = @"[A-Za-z]+";
    string pattern_num = @"\d+";            
    // 返回最后一个非数字字符的索引
    int a_z_last_index = lastWordIndexInString(tbx_Vendor_SN.Text);
    // 若有非数字存在,则截取最后一个非数字前的字符串,并在后面补足0
    if (a_z_last_index != 65535)
    {                
        // 截取最后一个字母前的一段字符串
        sn_alphabet_part = tbx_Vendor_SN.Text.Substring(0, a_z_last_index + 1);
        if (tbx_Vendor_SN.Text.Length > a_z_last_index)
        {                   
            int i = 0;
            // 用0补全这段字符串
            while (i < (tbx_Vendor_SN.Text.Length - a_z_last_index - 1))
            {
                sn_alphabet_part += "0";
                i++;
            }
        }
    }
    else
    {
        // 若无字母存在,直接取数字
        sn_alphabet_part = "";
    }
    foreach (Match m_num in Regex.Matches(tbx_Vendor_SN.Text, pattern_num))
        sn_num_part = m_num.Value;
    // 若有数字,更新numericUpDown.Value
    if (sn_num_part != "")
        numericUpDown1.Value = Decimal.Parse(sn_num_part.Trim());
}
/// 
/// 返回字符串中最后一个非数字的位置索引
/// 
/// 含有非数字的字符串
/// 最后一个非数字字符的索引,若字符串无,返回65535
public int lastWordIndexInString(string str)
{
    for (int i = str.Length - 1; i >= 0; i--)
    {
        if (!Char.IsDigit(str[i]))
        {
            //非数字字符的索引
            return i;
        }
    }
    return 65535;
}
/// 
/// Value值变化时更新TextBox
/// 
/// 
/// 
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{                
    string str_num = numericUpDown1.Value.ToString();
    if (sn_alphabet_part != "")
    {
        if (lastWordIndexInString(sn_alphabet_part) < (sn_alphabet_part.Length - str_num.Length))
        {
            // 去掉适合长度的“0”
            sn_alphabet_part = sn_alphabet_part.Remove(sn_alphabet_part.Length - str_num.Length, str_num.Length);
            // 在去掉“0”的位置上拼接Value
            sn_alphabet_part += str_num;
            // 更新Text
            tbx_Vendor_SN.Text = sn_alphabet_part;
        }                
    }
    else
    {
        tbx_Vendor_SN.Text = str_num;
    }            
}

OK! 这样就可以用NumericUpDown控件加减产品序列号了!

你可能感兴趣的:(Solution)