python -- str 字符串相减

发布时间:2024年01月15日

从一个字符串中减去另一个字符串,得到一个新的字符串结果

replace() 方法

host_ip = 'hello world'
host = 'world'
ip = host_ip.replace(host, "")
print(ip)

在这里插入图片描述

re.sub() 方法

import re

host_ip = 'hello world'
host = 'world'
ip = re.sub(host, "", host_ip)
print(ip)

translate()方法

host_ip = 'hello world'
host = 'world'
ip = host_ip.translate(str.maketrans("", "", host))
print(ip)
文章来源:https://blog.csdn.net/weixin_45939263/article/details/135605145
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。