怎么将字符串“1.4400.4402.440021”根据“.”切割成多个字符串数组
时间: 2023-11-12 22:09:18 浏览: 62
lua切割字符串为数组(split)
可以使用 Python 中的 split() 方法来实现:
```python
s = "1.4400.4402.440021"
array = s.split(".")
print(array)
```
输出结果为:
```
['1', '4400', '4402', '440021']
```
阅读全文