我需要使用Excel条件格式字符串来格式化.Net应用程序中的数字。对于那些不熟悉它们的人,Excel格式字符串如下所示:
[>=2]#,##0.0;[<=-2]-#,##0.0;#,##0.00
...应该被解释为“对于大于2的数字使用第一种格式,对于低于-2的数字使用第二种格式,对于其他所有数字使用第三种格式”。
在我继续构建自己的自定义格式字符串解析器之前,是否有人知道在.Net中是否有类似的内容我可以使用?我知道有 - 格式字符串的分隔符,但据我所知,它似乎无法考虑超出“负/正/零”的条件。
答案 0 :(得分:6)
您必须自己实现格式化,但可以使用接口IFormatProvider
和ICustomFormatter
挂钩.NET的现有格式框架。
这是一个如何做到这一点的例子。创建一个由ConditionalFormatter
个对象组成的ConditionalFormat
类。 ConditionalFormat
班级有Predicate
和Format
。 ConditionalFormatter
将按顺序搜索所有ConditionalFormat
个对象,找到Predicate
为真的第一个,并使用关联的Format
。格式化程序使用字母“Z”作为格式字符串。
class ConditionalFormat<T> where T : IFormattable {
public Func<T, Boolean> Predicate { get; set; }
public String Format { get; set; }
public static readonly Func<T, Boolean> Tautology = _ => true;
}
class ConditionalFormatter<T> : Collection<ConditionalFormat<T>>, IFormatProvider, ICustomFormatter
where T : IFormattable {
public const String FormatString = "Z";
readonly CultureInfo cultureInfo;
public ConditionalFormatter(IEnumerable<ConditionalFormat<T>> conditionalFormats)
: this(conditionalFormats, null) { }
public ConditionalFormatter(IEnumerable<ConditionalFormat<T>> conditionalFormats, CultureInfo cultureInfo)
: base(conditionalFormats.ToList()) {
this.cultureInfo = cultureInfo;
}
public Object GetFormat(Type formatType) {
return formatType == typeof(ICustomFormatter) ? this : null;
}
public String Format(String format, Object arg, IFormatProvider formatProvider) {
if (arg.GetType() != typeof(T))
return HandleOtherFormats(format, arg);
var formatUpperCase = format.ToUpperInvariant();
if (formatUpperCase != FormatString)
return HandleOtherFormats(format, arg);
var value = (T) arg;
foreach (var conditionalFormat in this)
if (conditionalFormat.Predicate(value))
return ((IFormattable) value).ToString(conditionalFormat.Format, cultureInfo);
throw new InvalidOperationException(String.Format("No format matching value {0}.", value));
}
String HandleOtherFormats(String format, Object arg) {
var formattable = arg as IFormattable;
if (formattable != null)
return formattable.ToString(format, this.cultureInfo);
else if (arg != null)
return arg.ToString();
else
return String.Empty;
}
}
该类是通用的,您必须创建一个与要格式化的类型匹配的实例。以下是使用Double
:
var conditionalFormatter = new ConditionalFormatter<Double>(
new[] {
new ConditionalFormat<Double> {
Predicate = d => -2 < d && d < 2,
Format = "#,##0.00"
},
new ConditionalFormat<Double> {
Predicate = ConditionalFormat<Double>.Tautology,
Format = "#,##0.0"
},
}
);
var value = 1234.5678;
var formattedValue = String.Format(conditionalFormatter, "Value is {0:Z}", value);
答案 1 :(得分:1)
另一个有趣的解决方案:有一个名为SmartFormat的库,其中包含一个条件格式化程序。
您的示例的语法是:
var output = Smart.Format("{0:>=2?{0:#,##0.0}|<=-2?{0:-#,##0.0}|{0:#,##0.00}}", value);
有关语法的说明,请参阅ConditionalFormatter。
但是,如果您想支持上面提到的确切Excel语法,可以下载SmartFormat
源代码并修改ConditionalFormatter
以支持您的语法。它使用正则表达式来解析每个(condition)
,因此很容易修改。
答案 2 :(得分:0)
你需要编写if / else if语句。没有直接的方法
string numberToFormat = //state your number here
string FormattedString = null;
if(numberToFormat >2)
{
//Format 1
//e.g. FormattedString = String.Format("{0:0.00}", numberToFormat);
}
else if(numberToFormat < -2)
{
//Format 2
}
else
{
// Format Default
}
这是最短的方式。但是你当然可以得到自己的条件格式化程序。