1

是否有如下评论的正则表达式:

/**
 * -string- (possible line) 
-possibly more lines like the above one-
 */

例如:

/**
 * The Boring class implements this and that
 * and also...
 * does this and that
 */
4

1 回答 1

5

/\*\*.*?\*/带有 dotall (点匹配所有)标志的简单应该可以解决问题。虽然它可能需要不同的转义或可能的分隔符,具体取决于您使用的正则表达式引擎的风格。

如果您的引擎中没有 dotall,请尝试以下操作:

/\*\*[\s\S]*?\*/
于 2012-06-06T21:17:42.283 回答