Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基于全局变量,我如何设置数字格式化程序,即设置逗号作为小数分隔符而不是句点。此外,根据全局变量更改日期格式模式。
即 1234.56 = 1234,56
我在哪里可以做到这一点?交叉表?以及使用什么表达方式?
提前致谢。
对于数字,您可以使用表达式:
params["SomeVar"].value == 'format1'? Formatter.format(valueToDisplay,"0,00"): Formatter.format(valueToDisplay,"0.00");
不知道 Formatter 是否适用于 Date 值。