标签: regex
如何使用正则表达式找到此模式?
C样式块评论
/* xxxxxxxxxxxx */
答案 0 :(得分:27)
尝试使用
\/\*(\*(?!\/)|[^*])*\*\/
捕获单行和多行块注释。它搜索/*后跟任意数量的任何一个:
/*
*
/
然后再次关闭*/。
*/