Hi i am having a problem with my application i want a part of string from a string.The situation is i am having a string variable named as stringData it stores following values:
IP Address Hardware Address Lease expiration Type
192.168.1.2 00-23-8B-87-9A-6B Mon Jan 02 01:14:00 2006 Dynamic
192.168.1.3 F8-F7-D3-00-03-80 Mon Jan 02 01:14:00 2006 Dynamic
192.168.1.4 F8-F7-D3-00-9C-C4 Mon Jan 02 01:14:00 2006 Dynamic
192.168.1.5 F0-DE-F1-33-9C-C4 Mon Jan 02 01:14:00 2006 Dynamic
I just want Hardware Address starting with F8-F7-D3-00. I am using a substring method now but i am getting only one matched hardware address but there might be a possibility of multiple strings as in above e.g and i want all of them.I am using C#.
Any help would be highly appreciable.
substring()at the moment?