Python 用正则切分字符串去除非符号【面试题详解】 2020-12-22 14:26:51 爱分享 取消关注 关注 私信 今天爱分享给大家带来用正则切分字符串去除非符号【面试题详解】,希望能够帮助到大家。 import re s="info:xiaoZhang 33 shandong" re.compile(r'\W').split(s) output: ['info', 'xiaoZhang', '33', 'shandong'] 相关推荐: SpringCloud Gateway自定义filter获取body中的数据为空【解决办法】 springboot整合swagger【详细教程】 安装webrtcvad出现ERROR: Failed building wheel for webrtcvad【解决办法】 hdf5文件格式如何使用【详细教程】 苹果电脑 mac 如何安装ctcdecode【详细步骤】 python的logging模块如何将log同时输出到Console和日志文件【附代码】 赞赏 人已赞赏 python