0

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

显示的程序。 这可能不是一个好习惯,但我在扩展类中编写了一个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."   

(带句点)在文本框中。有没有办法做到这一点,只有当它以一个句号结束时,句号才被删除?谢谢。

PS这是切片功能供参考:

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
                }
            }
        }
    }
}
4

1 回答 1

4

你为什么要使用这个奇怪的 Slice() 函数?将 String.Format 与特殊格式字符串一起使用还不够吗?例如,而不是写作

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

写吧:

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

...等等?

于 2013-06-16T22:48:49.313 回答