Discussion 2.1 Patch Notes: "Add system X, Y, Z co-ordinates to network log"

If it helps anyone, here's the regular expression I now use to parse both 2.0 and 2.1 logs:

Code:
@"^\{[0-9:]{8}\}\sSystem:\d*(?<system>((\([^)]+\))|(""[^""]+""))) (StarPos:\((?<starPos>[^\)]+)\)ly)?.* (?<flightType>[^ ]*)$"
 
Top Bottom