标签: python regex python-3.x
>>> a = """if HELLO ... do something""" >>> b = b"""if HELLO ... do something""" >>> if re.search(r"HELLO\b", a): ... print('yes') ... yes >>> if re.search(b"HELLO\b", b): ... print('yes') ... >>>
在搜索字节串时有没有办法使用\b?或者是否存在与\b完全相同的其他选项?
\b