Hello all,
I am trying to build a simple regular expression that lets me know if the first character is a number. For example, if the field contains "1 appraisal", then I would have a match because it starts with "1" - a number. If the field contains "Annual Review 2," then there is no match because it doesn't start with a number.
I wrote this in a filter tool, Regex_Match ([field name], "[^\d]")
What am I doing wrong? I thought the ^ was for the beginning of a line, and the \d was for numerical values.
I appreciate your help!