python 中的字符串分割忽略 \r \n 情况
我遇到这个问题,这真的很奇怪,我正在尝试解决它,但找不到最好的方法。
我在 python 中将此字符串作为 argv[]“copy c:\root c:\noot”传递。
我想在分割示例时将 c:\root 和 c:\noot 一起作为一个整体
:
commandLineOptions = "copy c:\root c:\noot" # this is passed from cmd.
x = commandLineOptions.split()
print x
[copy , c:\root , c:\noot]
干杯,
I am having this problem which is really weird I am trying to solve it and i can't find the best way.
I am passing this string as an argv[] "copy c:\root c:\noot" in python.
and i want to gave c:\root and c:\noot all together as one piece when splitting
example:
commandLineOptions = "copy c:\root c:\noot" # this is passed from cmd.
x = commandLineOptions.split()
print x
[copy , c:\root , c:\noot]
cheers,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
str.split
接受第二个参数 - “分割”的最大数量:str.split
accepts second parameter - maximum number of 'splits':