I think you want
as your JavaScript regex object, so the line should be
Code: Select all
/(?<==)\w+(?=;|,)/
Code: Select all
var findResult = selectedText.match(/(?<==)\w+(?=;|,)/);