有没有办法在不循环的情况下将数字值一起添加到字符串中?

Is there a way to add numeric values together in a string without looping?

我有一个字符串说:'212'。此字符串是动态生成的。

有没有办法在不循环的情况下将这些数字加在一起?

如果需要,我会循环添加值;但在研究了 Adobe Docs 之后,我想看看是否有更好的方法。

谢谢

当然..只是为了好玩。

digits = 212;
sum = arraySum(listToArray(digits, ""));
writeOutput(sum);

运行 上面的脚本:http://trycf.com/gist/3677b4e7d17d4fbac37d/acf