I want to fetch the word outside a quotation for example if I have this text:
xxxx xxx OK xxxxx "xxx OK xxxx"
I want to fetch the "OK" outside the quotation which mean first one I make this regular expression
[ ]OK[ ]
but it fetch the both. So how can I fetch only outside a quotation with regular expression?