I’m trying to parse out Amazon S3 server logs which are space delimited.
However date fields are in the following form:
[28/Oct/2008:21:44:21 +0000]
When I try to use the following code to split the record on the spaces it
also splits date field:
string[] fields = record.Split(' ');
What can I do to get around this?
Scott
However date fields are in the following form:
[28/Oct/2008:21:44:21 +0000]
When I try to use the following code to split the record on the spaces it
also splits date field:
string[] fields = record.Split(' ');
What can I do to get around this?
Scott
Comment