我正在尝试从我已经拥有的 XML 文件中选择一个随机的圣经经文。我想提取一个随机的诗句,显示它,然后还显示诗句号和书名。
我有几个 XML 文件,因此将它们转换为 Plist 可能会很麻烦,而且我不确定是否使用还可以提取章节编号和书名的字典。
XML 文件看起来像这样......
<bible translation="KJV">
<testament name="Old">
<book index="1" name="Genesis">
<chapter index="1">
<verse index="1" text="In the beginning God created the heaven and the earth."/>
<verse index="2" text="And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters."/>
<!-- THE REST OF THE XML HERE -->
</chapter>
</book>
</testament>
关于如何选择随机诗句然后显示文本、书名和章节编号的任何想法?