I need to get these text into separate separate columns in a excel.The 3rd segment is not having a fixed length, it can vary. This is actually an ouput of a read PDF activity. I READ PDF, then SPLIT by new line to get like this. After this please can anyone help?
See now you want to take all the dates separately ,for that I will write pattern
(\d{4})([A-Z]{4})([^0-9]+)(\d{2}/\d{2}/\d{4})(\d{2}/\d{2}/\d{4})(\d{2}/\d{2}/\d{4})
This is pattern
You can take matches activity & create output for that
Then using for each
give that matches output in for each,Inside you can call group(1) like that {You will get data }