replace find join

Posted 我们分头打钱!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了replace find join相关的知识,希望对你有一定的参考价值。

>>> s=‘spam‘

>>> s=s.replace(‘m‘,‘111‘)

>>> s

‘spa111‘

 

>>> where=s.find(‘11‘)

>>> where

3

>>> s=s[:where]+‘eggs‘+s[(where+2):]

>>> s

‘spaeggs1‘

 

>>> L=list(s)

>>> L

[‘s‘, ‘p‘, ‘a‘, ‘e‘, ‘g‘, ‘g‘, ‘s‘, ‘1‘]

>>> s=‘‘.join(L)    #把对象插入到join的参数内,插入位置为参数内分隔符的位置,以对象作为分隔符  

>>> s

‘spaeggs1‘

>>> ‘spam‘.join([‘aaa‘,‘bbb‘,‘ccc‘,])    #S.join(iterable) -> str    Return a string which is the concatenation of the strings in the iterable.  The separator between elements is S.

‘aaaspambbbspamccc‘

以上是关于replace find join的主要内容,如果未能解决你的问题,请参考以下文章

replace find join

sh find-replace.sh

Eclipse替换find/Replace

890. Find and Replace Pattern

833. Find And Replace in String

find查找split分隔replace替换