我想要得到的js文件注释内容。 我尝试使用代码
import re
code = """
/*
This is a comment.
*/
/*
This is another comment.
*/
"""
reg = re.compile("/\*(?P<contents>.*)\*/", re.DOTALL)
matches = reg.search(code)
if matches:
print matches.group("contents")
结果我得到的是
This is a comment.
*/
/*
This is another comment.
我怎样才能获得单独的意见吗?