정규식은 ip와 port를 일치시키고 xxx.xxx.xxx.xxx:8080으로 출력됩니다.

string?str?=?@"190.73.128.12808019.73.128.12080190.73.80.120 8080190.73.12.12015559192.168.128.1208080";

str?=?Regex.Replace(str,?@"",?":");

MatchCollection?mc?=?Regex. 일치(str,@"\d{2,3}([.]\d{1,3}){3}:\d{2,5}");

foreach?(일치 ?m?in?mc)

{

Console.WriteLine(m.Value);

}

Console.ReadKey( );