Hello,
In one field, I want to keep all string values matching the regex:
\\d{4}-\\d{2}-\\d{2}
and relegate all strings NOT matching that string to:
<null>
See following image for my attempt where I developed ^(?!\\d{4}-\\d{2}-\\d{2}).* as the negation of \\d{4}-\\d{2}-\\d{2} and set replacement to <null>. This did not work.
Any pointers would be greatly appreciated!
Tyler