美文网首页
python中字符串处理函数

python中字符串处理函数

作者: 洛神鬼道 | 来源:发表于2016-10-20 17:53 被阅读0次

    查找

    title_str="   This is a sentence. This is other sentence   "
    print(title_str.find('This',10,20))
    print(title_str.find('This'))
    

    join拼接

    dirs='','usr','local','bin'
    print('/'.join(dirs))
    

    小写字母

    name='Grubby'
    names= ['grubby','green','lucy']
    if name.lower() in names:
        print('found it!')
    

    替换

    print('this is a test'.replace('is','rep'))
    

    切分

    print('/usr/local/bin'.split('/'))
    

    去除空格

    print('   with whitespace   '.strip())
    

    相关文章

      网友评论

          本文标题:python中字符串处理函数

          本文链接:https://www.haomeiwen.com/subject/ddvhcttx.html