我就在这里
分类: Python/Ruby
2013-01-27 21:22:38
python 以逗号分割,忽略引号内的逗号
加posix=True 和不加posix=True 有区别
前两个是加和不加posix=True的对比,最后一个例子是以空格分割语句的例子lex.quotes = '"' 去掉效果一样
最近的python中引入了支持正则分割的shlex模块,他能很好的处理空格符的问题。如下
import shlex
str=shlex.shlex("ab,'cdsfd,sfsd',ewewq,5654",posix=True)
str.whitespace=','
str.whitesapce_split=True
b=list(str)
print b
['ab', 'cdsfd,sfsd', 'ewewq', '5654']
import shlex
str=shlex.shlex("ab,'cdsfd,sfsd',ewewq,5654")
str.whitespace=','
str.whitesapce_split=True
b=list(str)
print b
['ab', "'cdsfd,sfsd'", 'ewewq', '5654']
import shlex
lex = shlex.shlex('''This string has "some double quotes" and 'some single quotes'.''')
lex.quotes = '"'
lex.whitespace_split = True
b=list(lex)
['This', 'string', 'has', '"some double quotes"', 'and', "'some", 'single', "quotes'."]
在解析命令行参数的时候碰到python字符分割的问题,python中字符串分割默认都是在空格,但是我的参数中可能某个参数带有空格符,同时有双引号包围。
>>> import shlex
>>> shlex.split('this is "a test"')
['this', 'is', 'a test']