Hello. I work in FlashDevelop and in the global search by project (ctrl + shift + f) I write RegExp (in C #, as I understand it), which will find lines containing an expression of the form: quotation mark + RussianBukva * + quotation mark. Simple regular work, but I really want to exclude lines containing the word 'trace' from the selection. In other words, I am looking for a string that does not contain the word trace, but contains one or more Russian letters between the quotes. Immediately it should be said that there can be anything between a trace and a Russian string in quotes, and before the trace there are a lot of tabs. Examples:
trace("Шла"); trace("error:", id, "Саша"); var s:String = "по шоссе"; var a:Array = [123, "и что-то там"]; The working construction of the search for Russian lines in the project:
".*[А-яЁё].*" I would be grateful for the help.
(?!trace).*[А-яЁё].*- 0xdbчто-то(hyphen). - user239133