splite()

splite方法的使用
1、切割单个字符
str = 0001000010001以splite(“0”)切割出现什么效果
2、以多空格切分
str = a b c d e以splite(“\s+”)切割出现的效果

你可能感兴趣的:(splite())