I have quite a silly situation where I have a simple test workflow, which does the following:
- Read hospital number field value (which should be something like this 123456789
- Apply the pattern matching to divide the hopstial number in to three part, part1: 123, part2: 456 and part3:789.
- Pass values back to the hosptial number field like this: part1 part2 part3 (all tokens with space in between).
I kind of not make this working? Pattern matching returns right values while testing.
What am I missing here?