无法匹配正则表达式'\x00
'
我尝试使用正则表达式\x[0-9][0-9]
,\x*
,\x0*
,但似乎无济于事。
但是当我直接使用\x00
而不使用正则表达式时,它可以工作。
我需要使用正则表达式,因为数字可能会有所不同。
re.findall(r'\ \x[0-9][0-9]','abc\x00pqr')
# Intentional space between \&\ as i was not able to post without it
此代码不匹配任何内容。即使在编译模式之后,也会出现相同的问题。