用固定字符串末尾的空格替换小数

时间:2013-06-16 22:38:48

标签: c# .net string

好吧,所以我有一个工作程序,根据给定的长度或宽度制作黄金比例矩形。

Program Shown. 这可能不是一个好习惯,但我在扩展类中写了 String.Slice(start,end)

以下是我需要帮助的内容。

            case 1: //Length
                l1.Text = value.ToString().Slice(0, 4);
                l2.Text = value.ToString().Slice(0, 4);
                h1.Text = (value/phi).ToString().Slice(0, 4);
                h2.Text = (value/phi).ToString().Slice(0, 4);
                break;
            case 2: //Width
                l1.Text = (value * phi).ToString().Slice(0, 4);
                l2.Text = (value * phi).ToString().Slice(0, 4);
                h1.Text = value.ToString().Slice(0, 4);
                h2.Text = value.ToString().Slice(0, 4);
                break;  

根据无线电按钮,它会根据您提供的内容找到长度或长度。问题是,所有字符串都切成1-4个字符,数字可以显示为

 "161."   
文本框中的

(带句点)。是否有一种方法可以使它只有在一段时间被删除后结束?感谢。

P.S。这是切片函数供参考:

public static class Extensions
{
    public static string Slice(this string source, int start, int end)
    {
        if (end < 0) // Keep this for negative end support
        {
            end = source.Length + end;
        }
        int len = end - start;               // Calculate length
        try
        {
            return source.Substring(start, len); // Return Substring of length
        }
        catch (Exception)
        {
            try
            {
                return source.Substring(start, len - 1); // Return Substring of length
            }
            catch (Exception)
            {
                try
                {
                    return source.Substring(start, len - 2); // Return Substring of length
                }
                catch (Exception)
                {
                    return source.Substring(start, len - 3); // Return Substring of length
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:4)

为什么使用这个奇怪的Slice()函数?使用带有特殊format string的String.Format是否足够?例如,而不是写

h1.Text = (value/phi).ToString().Slice(0, 4);

只写:

h1.Text = String.Format("{0:0.0}", value/phi);

......等等?