21ic电子技术开发论坛's Archiver
论坛首页
›
DIY讨论区
› test04.py
laojun001
发表于 2025-2-25 12:34
test04.py
import re
string = "asd;jijd kdfjldsf\tsddzxcsddsa"
split_str = re.split(r'[;,\s]\s*', string)
print(split_str)
暗夜幽灵骑士
发表于 2025-4-2 18:20
re.split函数除了可以用来分割字符串,还有没有其他类似的函数可以一起用呢
页:
[1]
查看完整版本:
test04.py