I have wrote following RegEx to detect all ocurrences of C. 1909
:
input: C. 1909 test C.1909
\b[Cc][\.]\s*?\d+\b
this works fine,
However when I try to detect all ocurrences of 1909 C.
using following regex, it does not match anything:
input: 1909C. test 1909 C.
\b\d+\s*?[Cc][\.]\b