使用LPeg模块解析xml类型文件



我正在尝试学习LPeg的re module,这是一个非常有趣的经历,特别是因为官方文档是如此的好。

然而,有一些主题似乎没有得到很好的解释。例如named group capture结构:{:name: p :} .

考虑下面的例子,我不明白为什么它不匹配:

print(re.compile
  [[item <- ('<' {:tag: %w+!%w :} '>' item+ '</' =tag '>') / %w+!%w]]
  :match[[<person><name>James</name><address>Earth</address></person>]])
-- outputs nil

谁能告诉我这里出了什么问题?我想了很久,似乎我真的错过了一些重要的东西。

这是一个迟来的答案,但您可以尝试以下模式

result = re.compile[[
  item <- ({| %s* '<' {:tag: %w+ :} %s* '>' (item / %s* { (!(%s* '<') .)+ }) %s* '</' =tag '>' |})+
]]:match[[
<person>
    <name>
    James
    </name>
    <address>Earth</address>
</person>
]]

,它使用表捕获来解析XML w/空格的元素文本

tag = "person"
[1] = {
  tag = "name"
  [1] = "James"
}
[2] = {
  tag = "address"
  [1] = "Earth"
}

相关内容

  • 没有找到相关文章

最新更新