I have an input source with a field AC_NUM that can start with a digit or a letter. Examples are
88584848
MF83838
I want to place a filter on this input source so I can have two data streams: one where the field starts with a digit and another where the field starts with a digit.
so far I have a filter tool with the formula regex_match([AC_NUM],"^\D"). this does not work. There are no results in the true and all results are in the false.
what am i doing wrong? when i put ^\D into https://regex101.com/ to test, it highlights the M so I thought this should work. It highlights nothing on the 88584848.