我正在寻找一个现有的 swift2 函数来在空格上拆分字符串输入,同时在带引号的字符串中保留空格。
我已阅读堆栈溢出问题 25678373。我的问题似乎没有重复。
我在 cocoapods 中搜索了类似的功能。我没有找到它。
如果 swift2 中不存在这个 shlex.split 函数,那么完成类似事情的有效替代方法是什么?在保留内部引号字符串中的空格的同时拆分字符串的另一种方法是什么?
这是我在python中的意思的一个例子:
$ python
Python 2.7.6 (default, Jun 22 2015, 18:00:18)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import shlex
>>> input=""" alpha 2 'chicken with teeth' 4 'cat with wings' 6 turkey"""
>>> results = shlex.split(input)
>>> type(results)
<type 'list'>
>>> results[0]
'alpha'
>>> results[2]
'chicken with teeth'
>>> for term in results:
... print(term)
...
alpha
2
chicken with teeth
4
cat with wings
6
turkey
>>>