Search code examples
regexscite

SciTE Regex, Match expression between x and y times eg \w*{x,y}


How can I use SciTE to match a word character between 1 and 7 times?

normally it would be

\w{1,7}

Solution

  • I don't think it can be done that way in SciTE.

    Maybe: \w\w?\w?\w?\w?\w?\w?