I have a pattern matching activity that extracts multiple token fields from one string, queried from a database.
"SCR Number" is returned from a database query as S21001 (S + 2-digit fiscal year + 3-digit ID number).
I'm able to get the S and the 2-digit fiscal year, but not the 3-digit ID number. I tried both (\d{3})$ and \d{3}$, and they both work in the test window, but not when the workflow runs.
It should show 066 for the blue highlighted token below, but it just shows blank:
scrid holds the new token, for the next SCR number, which should be S21067. But, since it didn't get the ID number to increment, it just shows S21.
Any ideas?