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.
Sprache可以用作往返工具吗?我知道有了它,我可以构建一个可以从给定文本中提取信息的解析器。但是我可以重复使用相同的(简单*)模式来解析,也可以从信息中生成文本?
让我举个例子:我实现了一个能够"abc"从文本中提取信息的解析器"[abc]"。现在,如果我可以简单地提供值"abc"并且它会知道如何生成结果文本,那将会很方便"[abc]"。因此,我将有一个往返工具来从文本到信息并返回到文本。
"abc"
"[abc]"
*) 限于已知的符号出现次数(即没有.AtLeastOnce()等)
.AtLeastOnce()