gpt4 book ai didi

Python3关于字节变量的正则表达式

转载 作者:行者123 更新时间:2023-11-30 22:35:41 26 4
gpt4 key购买 nike

我正在尝试对字节变量执行正则表达式替换,但收到错误

  sequence item 0: expected a bytes-like object, str found

这是一个使用 python3 重现问题的小代码示例:

import re

try:
test = b'\x1babc\x07123'
test = re.sub(b"\x1b.*\x07", '', test)
print(test)
except Exception as e:
print(e)

最佳答案

当作用于 bytes 对象时,所有参数都必须是 byte 类型,包括替换字符串。即:

test = re.sub(b"\x1b.*\x07", b'', test)

关于Python3关于字节变量的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44457455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com