複数行のテキスト ファイルがあり、各行にタイム スタンプがあります。私はそれを特定の日付に分割し、通常の Regex.Matches を単語に対して実行したいと考えています。
だから私は呼ばれるDateTime変数を持っています
var date;
While(!reader.EndOfStream)
{
//need to split the document at certain date maybe Regex.Split and save it as newData
var matches=Regex.Matches(File.ReadAllText(newData), someWord);
}
正規表現またはその他の方法を使用して、特定の時点でドキュメントを分割する方法がわかりません。どうすれば分割できますか?
Portion of datafile is
2013-03-03 19:08:27 Truck 2012 Toyota
2013-03-03 19:08:44 car 2008 Honda
2013-03-03 19:08:55 car 2011 Ford
2013-03-03 19:09:21 car 2005 Nissan
2013-03-03 19:08:29 car 2003 Cadillac
2013-03-03 19:08:32 car 2009 Ford
2013-03-03 19:08:52 car 2007 Suburban";