Hello!
I am trying to parse the following data into two fields.
Where the two digits in between colons and before the date appears in one field and where the date/time appears in another. There may be times when the two digits are not there.
I have attempted regex parsing but I am very new to it and cannot get this to work.
| Field to Parse | Desired Output Field 1 | Desired Output Field 2 |
| 413764213-R:1U:14JAN16 00:52:08 | 1U | 14JAN16 00:52:08 |
| 414633025-R:1C:11FEB16 00:12:37 | 1C | 11FEB16 00:12:37 |
| 414633517-R:15FEB16 00:13:00 | | 15FEB16 00:13:00 |
Thank you!