Tag: regular expression
-

C# Track, Exercism #46 Parsing Log Files
Relevant link Github solution: exercism-solutions/parsing-log-files Exercism #46: Parsing Log Files Learning Goal Regular Expressions Relevant Information Processing of regular expressions are handled using the Regex class Task 1: Identify garbled log lines To determine if the logs contains one of these at the beginning: [TRC][DBG][INF][WRN][ERR][FTL] I used the IsMatch() method Task 2: Split the log line To…