Regex

\[(.|\n)*?\];?
==>["hello"]
\((.|\n)*?\);?
==>("hello")
Handlebars comment Regex:
\{\{!--(.|\n)*?--\}\}
Js comment Regex:
\/\/((.|\n)*?.*)
Laravel Balde Comment Regex:
\{{--(.|\n)*?--}}
Remove console.log() from js
console\.log\((.|\n)*?\);?
Python comment like #comments:
#(.|\n)*?.*

Comments