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.
コメントを個別に取得するにはどうすればよいですか?