This question already has answers here:
Regex to match a C-style multiline comment

(7个答案)


4年前关闭。




如何使用正则表达式找到此模式?

C样式块注释
/* xxxxxxxxxxxx */

最佳答案

尝试使用

\/\*(\*(?!\/)|[^*])*\*\/

捕获单行和多行块注释。它搜索/*,后跟任意一个:
  • 后面没有*/
  • *以外的任何字符

  • 然后再次关闭*/

    08-19 03:30