0
所以我一直在教自己VB.NET和堆棧溢出已得到很多幫助,但有一些我需要做的,我一直沒有找到。 由於我用的是API,我得到的東西返回值是這樣的:如何從另一個字符串內拉出非特定字符串?
<user>
<user_name>example</user_name>
<user_website>http://myawesomesite.com</user_website>
<user_email>[email protected]</user_email>
<user_location>New York</user_location>
</user>
我希望能夠從內所有標籤的拉出數據,並將它們分配到字符串,但我不不知道如何。我需要在「>」之後和「<」之前分割它,有沒有人有任何想法?
您以XML格式獲取的數據。搜索XML解析或反序列化。 – MarcinJuraszek