Go:检测无效JSON字符串字符的最佳方法是什么?

时间:2017-09-12 14:45:51

标签: json string go unicode control-characters

检测Go字符串是否包含JSON字符串中无效的字符的最佳,最有效的方法是什么?换句话说,Go的等同于这个Java question的答案是什么?它只是用它 strings.ContainsAny(假设ASCII control characters)?

ctlChars := string([]byte{
    0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
    19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127,
})
if strings.ContainsAny(str, ctlChars) {
    println("has control chars")
}

1 个答案:

答案 0 :(得分:2)

如果您希望识别控制字符(如您所指向的Java问题的答案),您可能希望使用unicode.IsControl来获得更简单的解决方案。

https://golang.org/pkg/unicode/#IsControl

func containsControlChar(s string) bool {
    for _, c := range s {
        if unicode.IsControl(c) {
            return true
        }
    }
    return false
}

游乐场:https://play.golang.org/p/Pr_9mmt-th