gpt4 book ai didi

javascript - 使用python从js文件中解析多个注释

转载 作者:太空宇宙 更新时间:2023-11-04 08:16:44 25 4
gpt4 key购买 nike

我想获取一个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.

如何单独获取评论?

最佳答案

使重复变得不贪婪:

"/\*(?P<contents>.*?)\*/"

现在 .* 将消耗尽可能少而不是尽可能多。

要获得多个匹配项,您需要使用 findall而不是 search

关于javascript - 使用python从js文件中解析多个注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13144883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com