Netty简化和封装TCP/UDP编程 简化操作网络间的通讯
Netty处于Web Server更下层的网络框架,简化和封装TCP/UDP编程,提供了更容易使用的网络编程接口,根据需要封装独特的HTTP Server或者FTP Server等。
Python字符串替换
replace
Python字符串replace()函数语法为:
str.replace(old, new[, count])
原始字符串保留 未修改。新字符串是原始字符串的副本,所有出现子串 旧的被新的代替。
如果count提供了可选参数,则仅替换首次计数。
我们也可以使用此功能替换字符串中的字符。
Python字符串replace()示例
让我们看一些使用字符串replace()函数的简单示例。
s = ‘Java is Nice’
# simple string replace example
str_new = s.replace(‘Java’, ‘Python’)
print(str_new)
# replace character in string
s = ‘dododo’
str_new = s.replace(‘d’, ‘c’)
print(str_new)
输出结果
Python is Nice
cococo
Python字符串替换为计数
s = ‘dododo’
str_new = s.replace(‘d’, ‘c’, 2)
print(str_new)
输出
cococo
用户输入的字符串replace()示例
input_str = input(‘Please provide input data/n’)
delimiter = input(‘Please provide current delimiter/n’)
delimiter_new = input(‘Please provide new delimiter/n’)
output_str = input_str.replace(delimiter, delimiter_new)
print(‘Updated Data =’, output_str)
输出结果
input_str = input(‘Please provide input data/n’)
delimiter = input(‘Please provide current delimiter/n’)
delimiter_new = input(‘Please provide new delimiter/n’)
output_str = input_str.replace(delimiter, delimiter_new)
print(‘Updated Data =’, output_str)
转载请注明:小猪云服务器租用推荐 » python replace具体应用示例