本文介绍了Python 3正则表达式查找多行注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在Python 3中使用正则表达式查找PHP源代码中的注释块。PHP注释格式如下:

I'm trying to find comment blocks in PHP source code using regular expressions in Python 3. The PHP comments are in this format:

 c>。 c>。

You can use the re.DOTALL flag to make the . character match newlines:

re.compile(r'/\*\*.+?\*/', re.DOTALL)


b $ b

(注意,PHP块注释可以以 / * 开头,而不仅仅是 / ** 。)

(As a side note, PHP block comments can start with /*, not just /**.)

这篇关于Python 3正则表达式查找多行注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 22:04