How to select a whole word inside Positve Lookbehind scope in Regex
For eg:- (?<=BILL TO SHIP TO INVOICE TOTAL\nNetflix\s)\w+\s\w+
In above Regex expression example, to make it more generic i need to write expression instead of specific word “Netflix”
So how to write it…?