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.
如何在统一 javascript 中将字符串转换为小数?
您是指 Unity 3D 中的 javascript 吗?
如果您是:Unity 使用 Mono,因此您应该可以访问float.Parse(str)or decimal.Parse(str)。(或限定名称System.Single.Parse(str)或System.Decimal.Parse(str))
float.Parse(str)
decimal.Parse(str)
System.Single.Parse(str)
System.Decimal.Parse(str)