一審我與它回車字符串我他們使用下面的分分離:C#得到字符串
string[] RemoveEmptySpace = result.Split(new string[] { "\n", "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
所以變成這樣:
Server: xxx
Address: xxx.xxx.11.10
Non-authoritative answer:
Name: test.com
Address: xxx.xxx.888.555
現在我的問題是我如何獲得地址數字的第一個實例而不是文本eg'xxx.xxx.11.10'?字符串來自NSLOOKUP所以它是動態的位置可能會改變......
感謝
拆分每分裂與'再次項:'作爲分隔符,並採取第二部分。 – 2012-01-10 11:17:04
'string address = RemoveEmptySpace [1] .Replace(「Address:」,「」)。修剪();' – ThePower 2012-01-10 11:17:27
上面的示例字符串,是否總是相同?或者我可以假設它可以是任何具有IP地址的字符串集合? – 2012-01-10 11:25:01