I am trying to write a simple regex which will list all subject names which do not begin with a number.
This is for use in the filters bar (rather than in a filter).
I have tried the following expression but neither seems to work:
^~[0-9]
~^[0-9]
In fact, Newsbin responds by removing the Post List entries as soon as one of these regexes is copied into the dropdown bar (without pressing FIND). Even using brackets like this does not prevent the instant response:
(^(~[0-9]))
What regex should I use to list all subject names which do not begin with a number?