I am trying to grab Employee names from a payroll statement. Unfortunately the name is not always in the same spot as it will move depending on types deductions entered. Therefore my OCR is zone is fairly large.
I can not use the first line as ADP restricts number of characters on this line. The first numbers designate company and department.
I always need to get the employee name from the second line. Also some people will have a two last names.
An example would be Mackenzie Miller Mike
I can get the first line but how do I return as my token the second line.
Update 1: I have used the following syntax and it seems to work. First Match or Multi-value. .{7}\w{2,15}\s{1,3}\w{2,15}\s*\w{2,15}\n(\w{2,15}\s{1,3}\w{2,15}\s*\w{2,15})
Seems cumbersome.