我正在尝试将此格式应用于我使用#´###,###
尝试的给定整数DecimalFormat class
但是当我需要两个accute accent
时,它只允许有一个分组分隔符号数百万和逗号成千上万。
所以最后我可以用这种方式格式化1,000
或数百万的值1´000,000
答案 0 :(得分:1)
我总是喜欢使用String.format,但我不确定是否有一个Locale可以格式化这样的数字。这里有一些代码可以完成这项工作。
// Not sure if you wanted to start with a number or a string. Adjust accordingly
String stringValue = "1000000";
float floatValue = Float.valueOf(stringValue);
// Format the string to a known format
String formattedValue = String.format(Locale.US, "%,.2f", floatValue);
// Split the string on the separator
String[] parts = formattedValue.split(",");
// Put the parts back together with the special separators
String specialFormattedString = "";
int partsRemaining = parts.length;
for(int i=0;i<parts.length;i++)
{
specialFormattedString += parts[i];
partsRemaining--;
if(partsRemaining > 1)
specialFormattedString += "`";
else if(partsRemaining == 1)
specialFormattedString += ",";
}
答案 1 :(得分:1)
请尝试使用您所需格式的这些Locale
格式。
List<Locale> locales = Arrays.asList(new Locale("it", "CH"), new Locale("fr", "CH"), new Locale("de", "CH"));
for (Locale locale : locales) {
DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(locale);
DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();
dfs.setCurrencySymbol("");
df.setDecimalFormatSymbols(dfs);
System.out.println(String.format("%5s %15s %15s", locale, format(df.format(1000)), format(df.format(1_000_000))));
}
util方法
private static String format(String str) {
int index = str.lastIndexOf('\'');
if (index > 0) {
return new StringBuilder(str).replace(index, index + 1, ",").toString();
}
return str;
}
输出
it_CH 1,000.00 1'000,000.00
fr_CH 1,000.00 1'000,000.00
de_CH 1,000.00 1'000,000.00
设置df.setMaximumFractionDigits(0);
以删除分数
输出
it_CH 1,000 1'000,000
fr_CH 1,000 1'000,000
de_CH 1,000 1'000,000
答案 2 :(得分:1)
我发现有用的链接@Roshan在评论中提供,这个解决方案是使用正则表达式和replaceFirst方法
$(document).ready(function () {
$("#btnAdd").bind("click", function () {
$("#productNameDDL option:first").attr('selected','selected');
});
});
我不知道这个解决方案是否会对性能产生影响,而且我对正则表达式很不满意,所以这段代码可能会缩短。
答案 3 :(得分:-1)
也许尝试使用这个,在空格或逗号之前使用你想要的单位“#”。
String num = "1000500000.574";
String newnew = new DecimalFormat("#,###.##").format(Double.parseDouble(number));