python字符串替换
str.replace(old, new[, max])参数old – 将被替换的子字符串。new – 新字符串,用于替换old子字符串。max – 可选字符串, 替换不超过 max 次返回值返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。示例upcallbackfunstr = "\char *func(char
·
str.replace(old, new[, max])
参数
old – 将被替换的子字符串。
new – 新字符串,用于替换old子字符串。
max – 可选字符串, 替换不超过 max 次
返回值
返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。
示例
upcallbackfunstr = "\
char *func(char *oldpayload)\n\
{\n\
#define PAYLOAD_SIZE 100\n\
char *payload = NULL;\n\n\
\
if(oldpayload != NULL)\n\
free(oldpayload);\n\
payload = (char *)malloc(PAYLOAD_SIZE);\n\
memset(payload, 0, PAYLOAD_SIZE);\n\
sprintf(payload, datanode, dataname);\n\
return payload;\n\
}\n\n"
print(upcallbackfunstr)
str1 = upcallbackfunstr.replace("datanode", "%s")
str2 = str1.replace("dataname", "hello")
print(str2)
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献2条内容
所有评论(0)