开发者

python中的字符串切割 maxsplit

目录
  • python 字符串切割 maxsplit
  • python字符串切割split和rsplit函数
    • 1. split(sep, maxsplit)
    • 2. rsplit(sep, maxsplit)
  • 总结

    python 字符串切割 maxsplit

    my_str.split(str1, maxsplit)

    str1 可以不写,默认是空白字符(" " “\t” “\n”)

    将my_str 这个字符串按照str1 进行切割, maxs编程客栈plit 割几次

    my_str = "hello phpworld itcast and itcastcpp"
    my_str1 = my_str.split(" ")
    print(my_str1)
    
    my_str2 = my_str.split(" ", 1)
    print(my_str2)
    
    my_str3 = my_str.split()  # 用开发者_C教程的最多
    print(my_str3)
    
    my_str4 = my_str.split("itcast")
    print(my_str4)
    
    
    # 输出结果是
    ['hello', 'world', 'itcast', js'and', 'itcastcpp']
    ['hello', 'world itcast and itcastcpp']
    ['hello', 'world', 'itcast', 'and', 'itcastcpp']
    ['hello world ', ' and ', 'cpp']
    

    python字符串切割split和rsplit函数

    1. split(sep, maxsplit)

    切分字符串,返回切分后的列表

    sep,分隔符,默认空格

    maxsplit,切分次数,默认最大次数,从起始位置开始计数

    示例1:默认

    s = 'a b c'
    res = s.split()
    res
    ['a', 'b', 'c']

    示例2:指定参数

    s = 'a b c'
    res = s.split(sep=' ', maxsplit=1)
    res
    ['a', 'b c']

    示例3:位置参数

    s = 'a.b.c'
    res = s.split('.', 1)
    res
    ['a', 'b.c']

    2. rsplit(sep, maxsplit)

    类似split,区别为从结尾位置开始计数

    sep,分隔符,默认空格

    maxsplit,切分次数,默认最大次数,从起始结尾开始计数

    示例1:默认

    s = 'a b c'
    res = s.rsplit()
    res
    ['a', 'b', 'c']

    示例2:指定参数

    s = 'a b c'
    res = s.rsplit(sep=' ', maxsplit=1)
    res
    ['a b', 'c']

    示例3:位置参数

    s = 'a.b.c'
    res = MpcRSpAJhs.rsplwww.devze.comit('.', 1)
    res
    ['a.b', 'c']

    总结

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。

    0

    上一篇:

    下一篇:

    精彩评论

    暂无评论...
    验证码 换一张
    取 消

    最新开发

    开发排行榜