- 论坛徽章:
- 0
|
本帖最后由 dreamlearn 于 2012-11-06 01:14 编辑
src = ["/home/jack python 'useful python' abc dir.py 'program file' --dir -d --file -f --maxdepth --ignore"]
src 路徑名文件 名參數 任何有-號這樣的字符是參數
沒有-這樣的字符或有引號的就是文件名根據這條件
你們會怎麼做??
我是這樣做的
- src = ["/home/jack python 'useful python' abc dir.py 'program file' --dir -d --file -f --maxdepth --ignore"]
- src = src[0].split( )
- src:
- ['/home/jack', 'python', "'useful", "python'", 'abc', 'dir.py', "'program", "file'", '--dir', '-d', '--file', '-f', '--maxdepth', '--ignore']
- path = src[0]
- def find(seq):
- names = [ ]
- args = [ ]
- for s in seq:
- if s[0] == "'":
- names.append(s[1:])
- if s[-1] == "'":
- names[-1] += ''.join(' %s' % s[:-1])
- elif s[0] != "'" and s[-1] != "'" and s[0] != '-':
- names.append(s)
- return names , agrs
- output:
- names == ['python', 'useful python', 'abc', 'dir.py', 'program file']
- args == ['--dir', '-d', '--file', '-f', '--maxdepth', '--ignore']
复制代码 |
|