次の内容のテキスト ファイルがあります。
Warning 18.05.2012 16:27:45 www.site.com 0 None BusyCount: 00:00:00.0000880
Warning 18.05.2012 16:27:45 www.site.com 0 None GetBusyPlace: 00:00:00.7759916
Warning 18.05.2012 16:27:44 www.site.com 0 None GetHallPlan: 00:00:00.0098537
Warning 18.05.2012 16:27:44 www.site.com 0 None GetSeatPrice: 00:00:00.1462649
Warning 18.05.2012 16:27:40 www.site.com 0 None BusyCount: 00:00:00.0000988
Warning 18.05.2012 16:27:40 www.site.com 0 None GetBusyPlace: 00:00:00.7330764
Warning 18.05.2012 16:27:39 www.site.com 0 None GetHallPlan: 00:00:00.0435432
私は3つの配列を持っています:
List<string> getSeatPrice = new List<string>();
List<string> getBusyCounts = new List<string>();
List<string> getHallPlan = new List<string>();
たとえば、このテキスト ファイルを解析して文字列から時間を取得GetBusyPlace: 00:00:00.7759916
し、適切な配列に入れるにはどうすればよいですか?
ありがとう