Update: This question is a near duplicate of this
I\'m sure the answer to my question is out there, but I couldn\'t find the words to express it suc
Not very generic solution since lookbehind isn't supported in Javascript but for given input this regex should work:
m = input.match(/([^',]+)(?=')/g); //=> ["Warehouse", "Local Release", "Local Release DA"]