我有一个带有以下正则表达式的 python 脚本,用于从我的代码中的 NSLocalizedString 宏中获取两个字符串(可能包含转义引号):
NSLocalizedString\(@"(?:\\.|[^"\\]*)",\s*@"(?:\\.|[^"\\]*)"\s*\)
它在 RegexRx 中运行良好,并且完全符合预期......
...但是,当我尝试像这样将它添加到我的 python 脚本中时...
localizedStringComment = re.compile('NSLocalizedString\(@"(?:\\.|[^"\\]*)",\s*@"(?:\\.|[^"\\]*)"\s*\)', re.DOTALL)
...它失败并显示以下消息...
Traceback (most recent call last):
File "../../localization_scripts/sr_genstrings.py", line 21, in <module>
localizedStringComment = re.compile('NSLocalizedString\(@"(?:\\.|[^"\\]*)",\s*@"(?:\\.|[^"\\]*)"\s*\)', re.DOTALL)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 244, in _compile
raise error, v # invalid expression
sre_constants.error: unexpected end of regular expression
似乎python需要在某个地方额外转义,但我不知道在哪里。如果我在最后一行添加额外的反斜杠,就像这样......
localizedStringComment = re.compile('NSLocalizedString\(@"(?:\\.|[^"\\]*)",\s*@"(?:\\.|[^"\\\\]*)"\s*\)', re.DOTALL)
...它运行时没有错误,但随后不匹配任何内容。任何帮助表示赞赏。