• 02.字符串


    01.字符串常用方法

    #1. find方法可以在一个较长的字符串中查找子串,他返回子串所在位置的最左端索引,如果没有找到则返回-1
    a = 'abcdefghijk'
    print(a.find('abc'))                                  #the result : 0
    print(a.find('abc',10,100))                           #the result : 11  指定查找的起始和结束查找位置
    
    #2. join方法是非常重要的字符串方法,他是split方法的逆方法,用来连接序列中的元素,并且需要被连接的元素都必须是字符串。
    a = ['1','2','3']
    print('+'.join(a))                                    #the result : 1+2+3
    
    #3. split方法,是一个非常重要的字符串,它是join的逆方法,用来将字符串分割成序列
    print('1+2+3+4'.split('+'))                          #the result : ['1', '2', '3', '4']
    
    #4. strip 方法返回去除首位空格(不包括内部)的字符串
    print("   test   test    ".strip())                  #the result :“test   test”
    
    #5. replace方法返回某字符串所有匹配项均被替换之后得到字符串
    print("This is a test".replace('is','is_test'))     #the result : This_test is_test a test

    1.1 find方法

    作用:find方法可以在一个较长的字符串中查找子串,他返回子串所在位置的最左端索引,如果没有找到则返回-1
    
    
    a = 'abcdefghijk'
    print(a.find('abc'))                         #the result : 0
    print(a.find('abc',10,100))                    #the result : 11  指定查找的起始和结束查找位置

    1.2 join方法

    作用:join方法是非常重要的字符串方法,他是split方法的逆方法,用来连接序列中的元素,并且需要被连接的元素都必须是字符串。
    
    
    a = ['1','2','3']
    print('+'.join(a))                                    #the result : 1+2+3

    1.3 split方法

    作用:这是一个非常重要的字符串,它是join的逆方法,用来将字符串分割成序列
    
    
    print('1+2+3+4'.split('+'))                            #the result : ['1', '2', '3', '4']

    1.4 strip

    作用:strip 方法返回去除首位空格(不包括内部)的字符串
    
    
    print("   test   test    ".strip())                #the result :“test   test”

    1.5 replace

    作用:replace方法返回某字符串所有匹配项均被替换之后得到字符串
    
    
    print("This is a test".replace('is','is_test'))     #the result : This_test is_test a test
  • 相关阅读:
    “sockaddr”: “struct”类型重定义的错误的解决办法《转》
    2019年车险
    tinylib
    命令行利用ffmpeg实现rtmp推流《转》
    Inno setup 判断系统32位还是64位
    vs2015编译OBS-Studio21.1.12
    啃OBS源码-界面汉字
    百年孤独人物关系1
    windows命令行查看文件MD5
    python 玩爬虫安装了一大堆第三方库
  • 原文地址:https://www.cnblogs.com/xiaoxiamiaichiyu/p/14583089.html
Copyright © 2020-2023  润新知