Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IP アドレスの例は次のようになります。
ftp:// 192.168.1.1/dir1/dir2/file.txt
どうすれば抽出できますか:
正規表現で。
次の正規表現があります。
Regex ip = new Regex(@"((ftp://)\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"); string []m = ip.Split(ftpAddress);