Hi all
I try to use the regex_match formula to get the needed data.
I have following data as example
| source1 | mapping1 |
| ASW-xyz | ASW- |
| C9300-24P-E | 24P-E |
and I use following Regex_match
if REGEX_Match([source1],[mapping1]+'.*') then "OK" else "NOK" endif
For row1 I get a OK but for row2 I get a NOK.
Can someone please tell me what I do wrong, and what is the correct regex to match not only the characters at the begining?
Many thanks
Steffen