const regex = /\{"app_id":"(?P<appid>(?:\w+))","dev_id":"(?P<devid>(?:\w+))","hardware_serial":"(?P<hardwareserial>(?:\w+))","port":(?P<port>(?:\d+)),"counter":(?P<counter>(?:\d+)),"payload_raw":"(?P<raw>(?:(\w+\=|\w+|\w+\==)))","payload_fields":{"(?P<value>(?:\w+))":"(?P<val>(?:\d+))"},"metadata":{"time":"(?P<time>(?:\w+-\w+-\w+:\w+:\w+.\w+))","frequency":(?P<freq>(?:(\w+.*\w+|\d+))),"modulation":"(?P<modulation>(?:\w+))","data_rate":"(?P<data_rate>(?:\w+))","airtime":(?P<airtime>(?:\w+)),"coding_rate":"(?P<coding_rate>(?:\d+\/\w+))","gateways":\[{"gtw_id":"(?P<gtw_id>(?:(\w+|\w+\-\w+)))"(|,"gtw_trusted":(?P<trusted>(?:\w+))),"timestamp":(?P<timestamp>(?:\w+)),"time":"(?P<times>(?:(\w+.\w+.\w+.\w+.\w+|\w+.\w+.\w+.\w+.\w+.\w+)))","channel":(?P<channel>(?:\d+)),"rssi":-(?P<rssi>(?:\d+)),"snr":(?P<snr>(?:(\d+.\d+|\d+))),"rf_chain":(?P<rf_chain>(?:\d+)),"latitude":(?P<latitude>(?:(\d+.\d+|\d+))),"longitude":(?P<longitude>(?:\b(\d*.\d+|\d)\b)),"location_source":"(?P<registry>(?:\w+))"}\]}}/gm;
// Alternative syntax using RegExp constructor
// const regex = new RegExp('\\{"app_id":"(?P<appid>(?:\\w+))","dev_id":"(?P<devid>(?:\\w+))","hardware_serial":"(?P<hardwareserial>(?:\\w+))","port":(?P<port>(?:\\d+)),"counter":(?P<counter>(?:\\d+)),"payload_raw":"(?P<raw>(?:(\\w+\\=|\\w+|\\w+\\==)))","payload_fields":{"(?P<value>(?:\\w+))":"(?P<val>(?:\\d+))"},"metadata":{"time":"(?P<time>(?:\\w+-\\w+-\\w+:\\w+:\\w+.\\w+))","frequency":(?P<freq>(?:(\\w+.*\\w+|\\d+))),"modulation":"(?P<modulation>(?:\\w+))","data_rate":"(?P<data_rate>(?:\\w+))","airtime":(?P<airtime>(?:\\w+)),"coding_rate":"(?P<coding_rate>(?:\\d+\\\/\\w+))","gateways":\\[{"gtw_id":"(?P<gtw_id>(?:(\\w+|\\w+\\-\\w+)))"(|,"gtw_trusted":(?P<trusted>(?:\\w+))),"timestamp":(?P<timestamp>(?:\\w+)),"time":"(?P<times>(?:(\\w+.\\w+.\\w+.\\w+.\\w+|\\w+.\\w+.\\w+.\\w+.\\w+.\\w+)))","channel":(?P<channel>(?:\\d+)),"rssi":-(?P<rssi>(?:\\d+)),"snr":(?P<snr>(?:(\\d+.\\d+|\\d+))),"rf_chain":(?P<rf_chain>(?:\\d+)),"latitude":(?P<latitude>(?:(\\d+.\\d+|\\d+))),"longitude":(?P<longitude>(?:\\b(\\d*.\\d+|\\d)\\b)),"location_source":"(?P<registry>(?:\\w+))"}\\]}}', 'gm')
const str = ``;
// Reset `lastIndex` if this regex is defined globally
// regex.lastIndex = 0;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for JavaScript, please visit: https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions