I am reading a text file using C# (.NET 3.5). loading file reading it line by line everything is fine working good but I want to read it from the center of a row. The Data present in .txt file is in following format:
12-09-2015 00:05:98 140.25.1.37 00120915000598 7421 03456***89 13 94569
13-09-2015 00:08:90 140.25.1.37 00130915000890 7421 034564***654 94569
13-09-2015 00:12:85 140.25.1.37 00130915001285 7421 0345***95114 94569
14-09-2015 00:11:20 140.25.1.37 00140915001120 7421 0345****9814 94569
16-09-2015 01:20:73 140.25.1.37 00160915012073 7421 03456***7698 94569
I need Data after IP 140.25.1.37..
there are more then 21000 entries in each file and data center generates like 100's of file. Please suggest me anything that is fast and efficient too.
Thank you