用函数将excel“配电-CQP001公园配电室-2023-7-3”这段字符串分隔为“配电”、“CQP001”、“公园配电室”、“2023-7-3”
```python
import re
def split_string(s):
pattern = r'(\w+)-(\w+)-(\d{4})-(\d{2}-\d{2})'
match = re.match(pattern, s)
if match:
return match.groups()
else:
return None
s = "配电-CQP001公园配电室-2023-7-3"
result = split_string(s)
print(result)
```
运行上述代码,将得到结果:`('配电', 'CQP001', '公园配电室', '2023-7-3')`。
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!