can you tell me please how to match text that is not preceded by begingin-of-line + a or b
also, I want the above to be non case sensitive, but in another part of the script I need case sensitivity, is there a way to determine it two times in one script?
also can you tell me please why this is wrong
document.selection.Replace(“^”, “Α”, eeFindReplaceRegExp | eeFindReplaceQuiet | eeReplaceAll);
I want to replace when its in the begining of a line with A
and last, can I combine these to in one script?
document.selection.Replace(“([αβγδεζηθικλμνξοπρστυφχψωςάέήίόύώ])
document.selection.Replace(“b
thanks