对于我的生活,我无法想象这一个.
原文链接:/regex/356824.html我需要搜索以下文本,仅匹配粗体引号:
Don’t match: “””This is a python docstring”””
Match: “ This is a regular string “
Match: “” ← That is an empty string
我怎么能用正则表达式做到这一点?
这是我尝试过的:
不起作用:
(?!"")"(?<!"")
关闭,但不匹配双引号.
不起作用:
"(?<!""")|(?!"")"(?<!"")|(?!""")"