A friend of mine said if the regex I'm using is too long, it's probably the wrong tool for the job. Any thoughts here on a better way to parse this text? I have a regex that returns everything to an array I can easily just chunk out, but if there's another simpler way I'd really like to see it.
Here's what it looks like:
2 AB 123A 01JAN M ABCDEF AA1 100A 200A 02JAN T /ABCD /E
Here's a break down of that:
2is the line number, these range from1all the way to99. If you can't see because of formatting, there is a space charecter prepending numbers less than 10.The space may or may not be replaced by an
*ABis an important unit of data (UOD).ABmay be prepended by/CDwhich is another important UOD.123is an important UOD. It can range from1(prepended by 4 spaces) to99999.Ais an important UOD.01JANis a day/month combination, I need to extract both UODs.Mis a day name short form. This may be a number between1and7.ABCis an important UOD.DEFis an important UOD.The space after
DEFmay be an*AA1may be zero characters, or it may be 5. It is unimportant.100Ais a timestamp, but may be in the format1300. TheAmay beNwhen the time is1200orPfor times in the PM.We then see another timestamp.
The next date part may not be there, for example, this is valid:
93*DE/QQ51234 30APR J QWERTY*QQ0 1250 0520 /ABCD*ASDFAS /EThe data where
/ABCD*ASDFAS /Eappears is irrelevant to the application, but, this is where the second date stamp may appear. The front-slash may be something else (such as a letter).
Note:
It is not space delimited, some parts of the body run into others. Character position is only accurate for the first two or three items on the list
I don't think I left anything out, but, if there's an easier way to parse out a string like this than writing a regex, please let me know.