gpt4 book ai didi

python - Python 中替换特定字符的优雅方法

转载 作者:行者123 更新时间:2023-12-01 05:37:47 25 4
gpt4 key购买 nike

我的字符串在字符内容方面是不可预测的,但我知道每个字符串都包含一个字符“*”。

如何用一些非硬编码字符串替换“*”后的两个字符。非硬编码的字符串实际上是计算校验和并转换为字符串:

checksum_str = str(hex(csum).lstrip('0x'))

最佳答案

你想要这样的东西:

star_pos = my_string.find('*')
my_string = my_string[:star_pos] + '*' + checksum_str + my_string[star_pos + 3:]

关于python - Python 中替换特定字符的优雅方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18491035/

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