문제

Simple question - is there something like python's shlex package that would allow me to simply parse/split/quote/escape shell-like quoted/backslashed strings in C or (possibly) C++?

The shlex package is just wonderful with its purpose (giving easy births to minilanguages and stuff), having similar common processing tool in C would be nice.

Link to shlex docs: http://docs.python.org/3.4/library/shlex.html

Example of what shlex does:

>>> import shlex
>>> shlex.split('abc ab\\ c  "ab\\"cd" key="\\"val\\""')
['abc', 'ab c', 'ab"cd', 'key="val"']

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top