What is the appropriate RegEx ( javascript ) for selecting 'and' when it's not between double-quotes. like below:
def abc as "Hello and Welcome" and aaa as "Hi" and bbb as "and"
"and"s which are not included in double-quotes should be selected like below:
def abc as "Hello and Welcome" and aaa as "Hi" and bbb as "and"
Thank you