字符串加1

        string strCode = "001001999";
        string strChar = string.Empty;
        string strRight, strMiddle, strLeft;
        strRight = string.Empty;
        strMiddle = string.Empty;
        strLeft = string.Empty;


        int j = 0;

        strChar = string.IsNullOrEmpty(strCode) ? "001" : strCode;

        if (strCode.Substring(strChar.Length - 1).Equals("9"))
        {
            for(int i=0; i < strCode.Length; i++)
            {
                if ( strCode.Substring((strCode.Length - i - 1),1).Equals("9"))
                    j++;
                else
                    break;

            }


            strRight = strRight.PadRight(j, '0');   //有多少个9补多少个零
            strMiddle = Convert.ToString(int.Parse(strCode.Substring(strCode.Length - j - 1, 1))+ 1);   //加1后的值
            strLeft = strCode.Substring(0, strCode.Length - j - 1); //
            strChar = strLeft + strMiddle + strRight;

        }
        else
        {
            strRight = Convert.ToString(int.Parse(strCode.Substring(strCode.Length - 1)) + 1);
            strLeft = strCode.Substring(0,strCode.Length - 1);
            strChar = strLeft + strRight;
        }


        Response.Write(strChar);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值