Home > Software engineering >  How do I do a regex OR in Scite 1.6?
How do I do a regex OR in Scite 1.6?

Time:10-28

I think that it's using an old regex format as the pipe ( | ) doesn't appear to have an effect.

All I'm trying to is quite simple:

canvas|svg|click|mousemove|div

CodePudding user response:

Unfortunately, SciTE's regular expressions are very limited. The documentation is here. Alternatives separated by | are not included in its features.

  • Related