Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python's shlex.split alternative for Go

Simple question - is there something like python's shlex.split that would allow me to simply parse/split/quote/escape shell-like quoted/backslashed strings ?

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

Example of what shlex.split does:

>>> import shlex
>>> shlex.split('abc ab\\ c  "ab\\"cd" key="\\"val\\""')
['abc', 'ab c', 'ab"cd', 'key="val"']
like image 842
Grzegorz Wierzowiecki Avatar asked Feb 20 '26 05:02

Grzegorz Wierzowiecki


1 Answers

Nothing in the standard library, but Google did publish their own shlex library which has been forked and changed some in flynn-archive/go-shlex.

For example:

package main

import (
    "fmt"
    "github.com/google/shlex"
)

func main() {
    input := "abc ab\\ c  \"ab\\\"cd\" key=\"\\\"val\\\"\""
    fmt.Println("Processing:", input)
    tokens, _ := shlex.Split(input)
    fmt.Printf("%#v\n", tokens)
    // []string{"abc", "ab c", "ab\"cd", "key=\"val\""}
}
like image 165
icio Avatar answered Feb 22 '26 21:02

icio



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!