Answers for "Regex to match a multiline comment"

1

regex match multline comment

(\/)([\*])+(.|\n)+?(\2\1)
Posted by: Guest on February-16-2021
0

Regex to match a multiline comment

((\/)([\*][\*]?)(.|\n)*?\3\2)|(\/\/.*)
Posted by: Guest on February-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language