What i want is something like this:
(
[integer OR (ANY but not integer or white-space)]
[(ONE white-space OR NONE)]
[integer OR (ANY but not integer or white-space)]
)
Example of strings that will match: 99 $
99$
$ 99
$99
what i have now is two regular expression :
^[^\d\s](\s{0,1})\d+
AND ^\d+(\s{0,1})[^\d\s]
any ideas of how to replace those two with only one regular expression?
The standard way to make a or in a regular expression is the pipe
|
(ref)If you need to match one or the other of your regexp, you need to match
(A|B)
with A=^[^\d\s](\s{0,1})\d+
and B=^\d+(\s{0,1})[^\d\s]
Result is
^(([^\d\s](\s{0,1})\d+)|(\d+(\s{0,1})[^\d\s]))