I am trying to match everything (backward) from "*" ...baaack... and immediately when first ")" will be find stop.
Example:
teeeext)
text))))
from next line start selecting because this is last ")")
SELECT
SELECT
SELECT
*** // stop selecting
I came with this expression:
(?<=\)).+\*
But this selects everything from first ")" until *