美文网首页
去掉字符串中间的空格

去掉字符串中间的空格

作者: tengyi | 来源:发表于2018-02-23 22:53 被阅读8次

    a=' a b c '

    1.正则表达式
    import re
    print(''.join(re.spilt('\s+',a))

    1. 字符串函数replace
      print(a.replace(' ','')

    3.字符串函数spilt
    print(''.join(a.spilt()))

    输出结果'abc'

    相关文章

      网友评论

          本文标题:去掉字符串中间的空格

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