I have been having a lot of issues with Regular expressions not working with Quickfields lately.
Regular Expression:
Patient\S\s?(.+)\s+Health Plan ID\S\d+
String testing:
Claim #: 99999E99999 Provider: AYERS, CHASE
Patient: JOBS, STEVE E Health Plan ID:000099999999 Patient #:9999999999
Dates of Procedure Msg Billed Allowed Provider Deductible Copay Coinsurance Ili Other Paid
Total Net Payment $384.00
Patient Responsibility: $96.00
Claim #: 88888E88888 Provider: AYERS, CHASE
Patient: TESLA, NIKOLA Health Plan ID:000023138200 Patient #:1361969157
Dates of Procedure Msg Billed Allowed Provider Deductible Copay Coinsurance Ineligible Other Paid
I am also trying to use Multi-Value Groups for these Patient names and it is not working as well.
I use the token accumulator and pass the values through but no success thus far.
Here is the Pattern Matching Token.
Here is the Token Accumulator for the Multi-Value Field "Patient Name"
Testing REGEX:
Looks as though (.+) grabs all up to a certain point and ignored the Health Plan after. I'm trying to grab anything between "Patient: " and " Health Plan"
Any help as to why the (.+) isn't working would be appreciated.