Hello,
If you want to extract the entire row and send it to Excel, you do not need parsing using delimiters. You should only specify line ending characters.
Please, look here:
https://www.aggsoft.com/asdl-barcode-data-logger.htmIf you want to split data to separate columns, you may do the following:
Date, Time, Room - you may extract this data from a fixed position using the ASCII Data Parser plugin.
Alarm type - use the following regular expression in ASCII Data Parser
[\d\.]{3,}\ {2,}(.+?)\ {2}
Call type - use the following regular expression
\ {2,}(.+)$
Maybe, fields in your data are delimited by the TAB ASCII character. Then you may extract data using it.