I am a newbie on regular expression. Could anybody suggest a regex to split string like below using Javascript? The text I am dealing with should be split by a space character but sometimes it contains space within the text snippet like below:
Input: SST+CONF!001 001 "407968017" "Projector Serial Number"
Desired output: ['SST+CONF!001', '001', '407968017', 'Projector Serial Number']
Please help!
Thank you!