我想基于索引数组显示来自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>
答案 0 :(得分:0)
你可以做简单的正则表达式匹配并提取数组
string text = "xmlstring"
string[] arr = text.match(/>[a-z]+<\//gi)