Hi all,
Using Workflow and Pattern Matching, is it possible to have an pattern with the actually year?
Example : Sentence : This is something 2016Ab123 and something else 2018Cd456.
Pattern : <year>\D{2}\d{3}
Result => 2018Cd456 (and not 2016Ab123)
I tried this but it looks doesnt work.
%(Date){4}$\D{2}\d{3}
Thanks in advance.
Regards