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.
对于一个附带项目,我想编写一个生成 XML 文件的 eval expr(现在只是布尔值)。
例如:
$./myBinary "TRUE AND (FALSE OR TRUE)" > foo.out
$cat foo.out
<AND> <TRUE> <OR> <TRUE> <FALSE> </OR> </AND>
我不知道从哪里开始。
哪种语言最容易使用?(性能不是问题)。
也许已经制作了类似的东西,但我在互联网上爬行却没有答案。