1

我是 lisp 的新手,我似乎找不到任何关于如何将读取的单词从 txt 文件格式化为 xml 的示例。

例子:

tag1
tag2 word2
tag1 word3
tag1 word4

我想要退出文件:.xml

<tag1>
   <tag2>word2</tag2>
</tag1>
<tag1>word3</tag1>
<tag1>word4</tag1>

或任何类似的东西。

4

1 回答 1

1

使用 CXML 和 SPLIT-SEQUENCE 库,您可以这样做:

(defun write-xml (input-stream output-stream)
  (cxml:with-xml-output
      (cxml:make-character-stream-sink output-stream
                                       :indentation 2 :canonical nil)
    (loop :for line := (read-line input-stream nil) :while line :do
       (destructuring-bind (tag &optional text)
           (split-sequence:split-sequence #\Space line)
         (cxml:with-element tag
           (when text
             (cxml:text text)))))))

结果会略有不同:

CL-USER> (with-input-from-string (in "tag1
tag2 word2
tag1 word3
tag1 word4")
           (write-xml in *standard-output*))
<?xml version="1.0" encoding="UTF-8"?>
<tag1/>
<tag2>
  word2</tag2>
<tag1>
  word3</tag1>
<tag1>
  word4</tag1>

你剩下的就是弄清楚如何在你的表示中处理元素的嵌套......

于 2013-01-06T14:29:26.033 回答