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.
如何以千为单位显示度量值。我假设这样做如下:
FORMAT_STRING="#,,"
但是数据返回:10000000.001 而我期望:10,000
格式遵循FORMAT_STRING文档中描述的格式:
FORMAT_STRING="#,###" or "#,##0" or "#,##0.0"
在定义格式时,您不应该使用您的语言环境,而是使用“,”分隔千位和“。” 为小数。
分隔符将在输出中自动转换为您的语言环境。
希望能帮助到你