Looking for a regex string that would match all alpha numeric character plus a few special ones that include + and -. Our current regex looks like this:
^[a-zA-Z0-9_,\.\-' ]+$
However, we need to also include the +
and -
as well so long as they are not surrounded by whitespace on either side. For example an A+ BC
would match, but not A + BC
.
Tried using word boundaries and haven't been successful. Any ideas?