我有像这样的
的ip地址内容的文本文件10.1.11.88
10.1.11.52
10.1.11.35
10.1.11.95
10.1.11.127
10.1.11.91
如何从文件中SPLIT
IP地址?
答案 0 :(得分:6)
var ips = File.ReadLines("path")
.Select(line => IPAddress.Parse(line))
.ToList();
您可以使用ips[i].GetAddressBytes()
分割地址。
答案 1 :(得分:1)
var ipAddresses = File.ReadAllLines(@"C:\path.txt");
这将为文本文件的每一行创建一个带有单独字符串的数组。
答案 2 :(得分:1)
我还会使用ipaddress.tryparse验证字符串读取 - http://msdn.microsoft.com/en-us/library/system.net.ipaddress.tryparse.aspx
答案 3 :(得分:1)
如果您希望将单个IP地址拆分为四(4)个组件,请使用string.Split(char[])
,这将为您提供包含每个部分的string[]
。
例如:
string[] addressSplit = "10.1.11.88".Split('.');
// gives { "10", "1", "11", "88" }
答案 4 :(得分:0)
这对你有用。这是鱼:
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.IO.StreamReader myFileStream;
string strFileLine;
String[] arrAddressString;
myFileStream = new System.IO.StreamReader("c:\\myTextFile.txt");
// where "c:\\myTextFile.txt" is the file path and file name.
while ((strFileLine = myFileStream.ReadLine()) != null)
{
arrAddressString = strFileLine.Split('.');
/*
Now we have a 0-based string arracy
p.q.r.s: such that arrAddressString[0] = p, arrAddressString[1] = q,
arrAddressString[2] = r, arrAddressString[3] = s
*/
/* here you do whatever you want with the values in the array. */
// Here, i'm just outputting the elements...
for (int i = 0; i < arrAddressString.Length; i++)
{
System.Console.WriteLine(arrAddressString[i]);
}
System.Console.ReadKey();
}
}
}
}