红酒泡绿茶 2016-04-30 18:19
浏览 186
已采纳

Go的python shlex.split替代

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"']
  • 写回答

1条回答 默认 最新

  • dongzha5934 2016-04-30 20:49
    关注

    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
    ", tokens)
        // []string{"abc", "ab c", "ab\"cd", "key=\"val\""}
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?