find查找split分隔replace替换
Posted 失落的黎明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find查找split分隔replace替换相关的知识,希望对你有一定的参考价值。
1 #!/usr/bin/env python
2 r = "asada"
3 ret = r.find("d")
4 print(ret)#返回所在位置的索引
5 ret =r.split("d")
6 print(ret)#分隔
7 ret = r.replace("sa","k")
8 print(ret)#替换
结果C:\Python35\python3.exe F:/Python/笔记1/a1.py
3
[‘asa‘, ‘a‘]
akda
Process finished with exit code 0
以上是关于find查找split分隔replace替换的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] 890. Find and Replace Pattern 查找和替换模式