Split Ip Address Code

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1743
Split Ip Address Code
==========================
string st1 = "1SeI-19;Jaguar;02; ; ;BOTH;192.168.1.60 ;9080 ;N";
string st2 = st1.Split(';')[6];
string st3 = st1.Split(';')[7];
Response.Write(st2 + st3);

Comments or Responses

Login to post response