How can I split a string in shell-style syntax in Haskell? The equivalent in Python is shlex.split.

>>> shlex.split('''/nosuchconf "/this doesn't exist either" "yep"''')
['/nosuchconf', "/this doesn't exist either", 'yep']
link|improve this question

78% accept rate
feedback

1 Answer

I'm not sure what exactly you mean: are you wanting to get get all quoted sub-strings from a String? Note that unlike Python, etc. Haskell only has one set of quotes that indicate something is a String, namely "...".

Possibilities to consider:

  • The words and lines functions

  • The split package

  • Write a custom parser using polyparse, uu-parsinglib, parsec, etc.

It may be useful if you specified why you wanted such functionality: are you trying to parse existing shell scripts? Then language-sh might be of use. But you shouldn't be using such Strings internally in Haskell, and instead using [String] or something.

link|improve this answer
The shell delimited string is the value of an option in a INI-style config file. – Matt Joiner Nov 2 '11 at 4:36
@MattJoiner:If you want to read in an INI-style config file, see hsini and ConfigFile. – ivanm Nov 2 '11 at 4:39
Yes I'm already using ConfigFile... The value of an option is this shell string... – Matt Joiner Nov 2 '11 at 10:56
@MattJoiner: oh, and it doesn't already do this split for you? You may be able to get John Goerzen to add support for parsing such values for you (since ConfigFile is already using parsec). – ivanm Nov 3 '11 at 4:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.