5

给出以下示例:

string amountDisplay = presentation.Amount == 1 ? "" : String.Format("{0} x ", presentation.Amount);

无论如何要使用 String.Format 以便它根据属性进行格式化,而不必对参数的“值”进行条件处理?

另一个用例:

String.Format("({0}) {1}-{2}", countryCode, areaCode, phonenumber); 

如果我只有电话号码,我最终会得到类似“() -5555555”的东西,这是不可取的。

另一个用例:

String.Format("my {0} has {1} cat[s]", "Aunt", 3) 

在这种情况下,如果值 > 1,我想将 s 包含在 [] 中。

String.Format 是否有任何黑色“语法”根据参数值或 null 删除代码部分?

谢谢。

4

4 回答 4

2

并不真地。当然,您可以为复数 [s] 破解一些东西,但这不是匹配所有用例的通用解决方案。

无论如何,您都应该检查输入的有效性。如果您希望areaCode它不为 null,并且它是一个可以为 null 的类型,例如string,请在方法的开头进行一些检查。例如:

public string Foo(string countryCode, string areaCode, string phoneNumber)
{
    if (string.IsNullOrEmpty(countryCode)) throw new ArgumentNullException("countryCode");
    if (string.IsNullOrEmpty(areaCode)) throw new ArgumentNullException("areaCode");
    if (string.IsNullOrEmpty(phoneNumber)) throw new ArgumentNullException("phoneNumber");

    return string.Format(......);
}

补偿用户输入的一些验证错误不是 UI 的工作。如果数据错误或丢失,请不要继续。它只会给你带来奇怪的错误和很多痛苦。

于 2013-04-17T19:27:00.543 回答
1

您也可以尝试 PluralizationServices 服务。像这样的东西:

using System.Data.Entity.Design.PluralizationServices;

string str = "my {0} has {1} {3}";
PluralizationService ps = PluralizationService.CreateService(CultureInfo.GetCultureInfo("en-us"));
str = String.Format(str, "Aunt", value, (value > 1) ? ps.Pluralize("cat") : "cat");
于 2013-04-17T19:33:38.413 回答
0

尝试使用条件运算符:

string str = "my {0} has {1} cat" + ((value > 1) ? "s" : "");

str = String.Format(str, "Aunt", value);
于 2013-04-17T19:23:48.513 回答
0

只解决了第二个问题,但是:

int x = 3;
String.Format("my {0} has {1} cat{2}", "Aunt", x, x > 1 ? "s" : ""); 
于 2013-04-17T19:25:10.483 回答