C
colinhumber
I need to find a regular expression that will pick up spaces that are
followed by either another space or an expression.
I have been using the expression "(?<=) (?=[ ])" which has been
working fine, except in the example "1 space", it is picking up the
space. I know it's because it's looking for a space, &, n, b, s, p, ;
character. How to I change the regular expression to look for a space
that is followed by a space or " "?
I've tried grouping the together using (?<=) (?=[ [ ]]) but
it isn't working.
HELP!!!
followed by either another space or an expression.
I have been using the expression "(?<=) (?=[ ])" which has been
working fine, except in the example "1 space", it is picking up the
space. I know it's because it's looking for a space, &, n, b, s, p, ;
character. How to I change the regular expression to look for a space
that is followed by a space or " "?
I've tried grouping the together using (?<=) (?=[ [ ]]) but
it isn't working.
HELP!!!