I am working on a project using richtextbox as usual.
I am trying to figure out a regex pattern to match the leading white spaces on each line of text.
I have messed with different variations of
the white space pattern with no success.
Tried:
.pattern = "\s" 'matches all white spaces so no good
.pattern = "\s\S" 'matches until hits non white space
which is better but still finds all white space between
each word in line and so no good.
and many others which I no longer remember.
Thanks in advance to any helpers.
Ron
I am trying to figure out a regex pattern to match the leading white spaces on each line of text.
I have messed with different variations of
the white space pattern with no success.
Tried:
.pattern = "\s" 'matches all white spaces so no good
.pattern = "\s\S" 'matches until hits non white space
which is better but still finds all white space between
each word in line and so no good.
and many others which I no longer remember.
Thanks in advance to any helpers.
Ron