首页 > 解决方案 > 有没有更简单的方法来格式化这个字符串?

问题描述

我一直在尝试将这个字符串格式化为一个文本框,因为它正在被输入。我想要的输出结果如下:

用户按下'0':输出:'0 //'

用户按'6':输出:'06//'

用户按下'2':输出:'06/2 /'

等等

我目前拥有的:

private void fTranDate_KeyPress(object sender, KeyPressEventArgs e)
{
    if(!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && fTranDate.Text.Length > 10)
    {
        e.Handled = true;
    }
    else if (!Char.IsControl(e.KeyChar)) //Is numeric
    {
        //Get the string from the field
        var existing_string = fTranDate.Text;
        //Strip the spaces and the slashes from the string
        existing_string = existing_string.Replace("/", "").Replace(" ","");
        //Append the new digit to the end of the string
        existing_string= existing_string + e.KeyChar;
        //Re-add the spaces on the end of the string
        existing_string = String.Format("{0,-8}", existing_string);

        var existing_char = existing_string.ToCharArray();
        fTranDate.Text = String.Format("{0}{1}/{2}{3}/{4}{5}{6}{7}", existing_char[0],existing_char[1],existing_char[2],existing_char[3],existing_char[4],existing_char[5],existing_char[6],existing_char[7]);
        fTranDate.SelectionStart = fTranDate.Text.Replace(" ","").Length;
        fTranDate.SelectionLength = 0;
        e.Handled = true;
    }
}

有什么办法可以让这更精简吗?我尝试了其他一些想法,但这是唯一可行的想法。

标签: c#

解决方案


您可以将MaskedTextbox与输入掩码一起使用00/00/0000

编辑您还可以将ValidatingType属性设置为DateTime类型。

在此处输入图像描述


推荐阅读