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.
如何将字符串转换为浮动并在速度模板中进行加法操作。
我试过下面的东西,但没有用。
$浮动 = 0.0
$stringValue = "5.5"
$sum = 0.0
$sum = $sum + $Float.parseFloat($stringValue)。
上面的东西甚至没有工作,“$Float.parseFloat($stringValue)”没有被评估。
刚刚找到答案。
$textutils.parseFloat("5.5") 可以将其转换为浮点数。
另外,其他方式,在类文件中,Float f=5.6f; 速度模板.put("floatVar",f); //将浮点变量传递给速度模板
在模板中, $f.parseFloat("5.5") 将起作用。
谢谢你。