I have a simple .csv log file that I'm trying to break with:
[software_summary]
LINE_BREAKER = ([\r\n]+)
SHOULD_LINEMERGE = false
Here is a sample of the log:
Back to Index,
HOST INFORMATION,
Software build-2718055,10
Software build-3116895,15
Software build-2583090,35
Software 5.5.0 build-1746974,22
The two fields I'm interested in which are comma delimited are **Software Build** and **Count**. I'd like to see each line break out into its own log file. Thanks !!
↧