假设我们有这样的输入(这是一个例子,无论它是否有意义):
data = "(((column_1 + 7.45) * 3) <> column_2 - ('string\'1' / 2))"
好吧,我需要匹配一个字符串,它以'
开头和结尾,并且可能包含使用Python re模块的上述示例的转义单引号。所以结果应该是string\'1
。我们怎样才能实现它?
编辑:我正在使用PLY库,用法应为
def t_leftOperand_arithmetic_rightOperand_STRING(self, t):
r'<regex>'
t.lexer.pop_state()
return t
答案 0 :(得分:1)
我相信你必须考虑逃脱逃生。
为此,您需要'[^'\\]*(?:\\[\S\s][^'\\]*)*'
输入
'''Set 1 - this
is another
mul\'tiline
string'''
'''Set 2 - this
is' a\\nother
mul\'''tiline
st''ring'''
Regex1: '[^'\\]*(?:\\[\S\s][^'\\]*)*'
Options: < none >
Completed iterations: 400 / 400 ( x 1000 )
Matches found per iteration: 9
Elapsed Time: 5.00 s, 4995.27 ms, 4995267 µs
Regex2: '(?:[^'\\]|\\.)*'
Options: < s >
Completed iterations: 400 / 400 ( x 1000 )
Matches found per iteration: 9
Elapsed Time: 7.00 s, 7000.68 ms, 7000680 µs
其他正则表达式(仅限测试。由于@ridgerunner说可能导致回溯问题)
Regex2: '(?:[^'\\]+|\\.)*'
Options: < s >
Completed iterations: 400 / 400 ( x 1000 )
Matches found per iteration: 9
Elapsed Time: 5.45 s, 5449.72 ms, 5449716 µs