regex find inside multi line comment block code example
Example 1: regex match multline comment
(\/)([\*])+(.|\n)+?(\2\1)
Example 2: Regex to match a multiline comment
((\/)([\*][\*]?)(.|\n)*?\3\2)|(\/\/.*)
(\/)([\*])+(.|\n)+?(\2\1)
((\/)([\*][\*]?)(.|\n)*?\3\2)|(\/\/.*)