I\'m trying to return documents that whose obsNum field starts with 1.. I have written the following RegEx to filter out those documents however, it returns all the
1.
The regular expression you might try is:
^(1\.\d+)
Explanation:
^
(…)
1
\d
+