I am working with the cmd class in python and it passes me all of my arguments as one big string. What is the best way to tokenize this arg string into an array of args[].
Example:
args = 'arg arg1 "arg2 with quotes" arg4 arg5=1'
result = split_args(args)
And it would look like:
result = [
'arg',
'arg1',
'arg2 with quotes',
'arg4',
'arg5=1'
]
import shlex
shlex.split('arg arg1 "arg2 with quotes" arg4 arg5=1')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With