I started learning Reg Ex yesterday as I use the automation software Blue Prism and you can write Reg Ex's.
I need to pull the same data each time (example shown below) and that is the persons KID (in this case J16203
), their Payroll number (6554739
) and their Contract end date (22/02/14)
I've written /KID ([A-Za-z]){1}\d{4,5}
to pull out their KID (which always begins with a letter and then is 4 or 5 digits). How do I add to this to pull out their payroll number and contract end date?
Persons data
This is their KID J16203
Person’s Payroll number 6554739
Contract end date 22/02/14