0

In the Scite editor is there a way to runa regex search where the first character is "notted".

Normally the hat symbol (^) is used but at the start of the regex this indicates the start of a line.

So this:

^.', +'default'

Doesn't work (this sequence can be in the middle of a line). :-(

Richard
  • 4,809
  • 3
  • 27
  • 46

1 Answers1

0

It appears that you can. A quick read of the documentation and square braces come to the rescue:

[^.]', +'default'
Richard
  • 4,809
  • 3
  • 27
  • 46