I have a sentence \"no it\'s all right lag\" where I am trying to detected a pattern \"no lag\". My regex is no + (\\\\s\\\\w*?\\\\s?){1,3} + lag. This fails. Howev
no + (\\\\s\\\\w*?\\\\s?){1,3} + lag
I think just no(.*)lag pattern will work. If I understood right.