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.
我想做一个函数,允许我在参数中传递一个字符串——最好的方法是什么?
例如.. 摩尔(“Ca(OH)2”)
任何帮助都将非常感激。
我最终通过将字符串解析为变量来输入它。所以对于 DDMathParser:
someFunction("Hello")
... 相当于:
someFunction($Hello)
但是,这意味着您现在可以使用更复杂的变量来处理:
someFunction("Hello world") Moles("Ca(OH)2")
... ETC