从基于xml的标记解析文本

时间:2017-04-27 18:32:19

标签: android arrays xml-parsing

我想基于索引数组显示来自xml的文本,但是我很难搞定这个数组。

String [] textExmple={R.};// This is the array I want to create

此sample.xml

<?xml version="1.0" encoding="utf-8"?>

<country id="2">
    <name>
        Australia
    </name>
    <capital>
        Canberra
    </capital>
</country>

<country id="3">
    <name>
        USA
    </name>
    <capital>
        Washington, D.C.
    </capital>
</country>

1 个答案:

答案 0 :(得分:0)

你可以做简单的正则表达式匹配并提取数组

string text = "xmlstring"
string[] arr = text.match(/>[a-z]+<\//gi)