Hi Folks, How Can solve this error of Possible Inline Regex? var num = num_art.match(/d+/); Thanks in advance, DJ
Replacing it with a string will do it:
var num = num_art.match(new RegExp("d+"));