I would like to get the string contents within a multi line comment using JavaScript:
"/*
test
test
test
*/"
Given the above string, I would like the contents, test test test.
I've searched SO and cannot find a suitable answer. Does anyone know how to get all of the contents of a string within a multi line comment?