我正在使用 Pflag 库中的StringSliceP接受字符串列表作为 CLI 参数。
我正在从 Windows 命令提示符调用 Go 应用程序。
我希望列表的某些字符串包含 ( "
) 双引号字符,但我无法做到这一点。
转义引号不起作用:
goapp.exe --string-slice-list "a\"b",c,d,e
预期结果:[]string{"a\"b", "c", "d", "e"}
实际结果:Error: invalid argument "a\"\\b,c,d,e" for "--string-slice-list" flag: parse error on line 1, column 1: bare " in non-quoted-field
加倍引号不起作用:
goapp.exe --string-slice-list "a""b",c,d,e
预期结果:[]string{"a\"b", "c", "d", "e"}
实际结果:Error: invalid argument "a\"b,c,d,e" for "--string-slice-list" flag: parse error on line 1, column 1: bare " in non-quoted-field