我想使用逗号作为千位分隔符将一个数字变成一个字符串.就像是:
原文链接:https://www.f2er.com/regex/356716.htmlx = 120501231.21; str = sprintf('%0.0f',x);
但有效果
str = '120,501,231.21'
如果内置的fprintf / sprintf无法做到这一点,那么我可以使用正则表达式,也许通过调用Java(我假设有一些基于locale的格式化程序)或基本的字符串插入操作来构建酷的解决方案.但是,我不是Matlab正则表达式中的专家,也不是从Matlab调用Java.
相关问题:How can I print a float with thousands separators in Python?
在Matlab中有没有确定的方法?