How can I use SciTE to match a word character between 1 and 7 times?
normally it would be
\w{1,7}
How can I use SciTE to match a word character between 1 and 7 times?
normally it would be
\w{1,7}
I don't think it can be done that way in SciTE.
Maybe: \w\w?\w?\w?\w?\w?\w?
It does not support that syntax, you can view the docs here. As activa said, the only way to do it seems to be \w\w?\w?\w?\w?\w?\w?