如何在Python 3.x中替换子字符串?

Barbara Streisand
发布: 2024-11-17 13:17:01
原创
381 人浏览过

How Do I Replace Substrings in Python 3.x?

如何在 Python 3.x 中替换子字符串

简介:

Python 的字符串。 Replace() 方法在 Python 3.x 中已被弃用。本文探讨了 Python 3 中替换子字符串的新的推荐方法。

新方法:使用 str.replace()

与 Python 2.x 中一样,Python 3.x 提供了 str.replace() 方法作为 string.replace() 的替代方法。它遵循相同的语法和行为:

original_string.replace(old_substring, new_substring, count)
登录后复制
  • original_string:要执行替换的字符串。
  • old_substring:要替换的子字符串。
  • new_substring:要替换的子字符串。
  • count(可选):一个整数,指定要替换的 old_substring 的最大出现次数(默认为无限制)。

示例:

要将字符串“Hello world”中的单词“world”替换为“Guido”:

>>> 'Hello world'.replace('world', 'Guido')
'Hello Guido'
登录后复制

附加说明:

  • str.replace() 返回应用了替换的新字符串,而原始字符串保持不变。
  • 如果在字符串中找不到 old_substring,则返回原始字符串。
  • 指定计数可确保仅替换出现一定次数的子字符串。例如,将前两次出现的“is”替换为“are”:
>>> 'This is is is not is a test'.replace('is', 'are', 2)
'This are are is not is a test'
登录后复制

以上是如何在Python 3.x中替换子字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板