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.
当我使用 tostring("E4") 以科学计数法将数字显示为字符串时,会显示前导零,以便指数始终为三位数。我怎样才能摆脱这些前导零?
例如,我想要这个:“5.5E9”,而不是这个:“5.5E+009”。
使用自定义格式字符串:
314159.ToString("#.###+E0")
生产
3.142+E5