dongtaogu8510 2018-10-30 16:38
浏览 204
已采纳

检查字符串仅包含ASCII字符

Does Go have any method or there is a suggestion how to check if a string contains only ASCII characters? What is the right way to do it?

From my research, one of the solution is to check whatever there is any char greater than 127.

func isASCII(s string) bool {
    for _, c := range s {
        if c > unicode.MaxASCII {
            return false
        }
    }

    return true
}
  • 写回答

2条回答 默认 最新

  • dongye1912 2018-10-30 17:29
    关注

    In Go, we care about performance, Therefore, we would benchmark your code:

    func isASCII(s string) bool {
        for _, c := range s {
            if c > unicode.MaxASCII {
                return false
            }
        }
        return true
    }
    
    BenchmarkRange-4    20000000    82.0 ns/op
    

    A faster (better, more idiomatic) version, which avoids unnecessary rune conversions:

    func isASCII(s string) bool {
        for i := 0; i < len(s); i++ {
            if s[i] > unicode.MaxASCII {
                return false
            }
        }
        return true
    }
    
    BenchmarkIndex-4    30000000    55.4 ns/op
    

    ascii_test.go:

    package main
    
    import (
        "testing"
        "unicode"
    )
    
    func isASCIIRange(s string) bool {
        for _, c := range s {
            if c > unicode.MaxASCII {
                return false
            }
        }
        return true
    }
    
    func BenchmarkRange(b *testing.B) {
        str := ascii()
        b.ResetTimer()
        for N := 0; N < b.N; N++ {
            is := isASCIIRange(str)
            if !is {
                b.Fatal("notASCII")
            }
        }
    }
    
    func isASCIIIndex(s string) bool {
        for i := 0; i < len(s); i++ {
            if s[i] > unicode.MaxASCII {
                return false
            }
        }
        return true
    }
    
    func BenchmarkIndex(b *testing.B) {
        str := ascii()
        b.ResetTimer()
        for N := 0; N < b.N; N++ {
            is := isASCIIIndex(str)
            if !is {
                b.Log("notASCII")
            }
        }
    }
    
    func ascii() string {
        byt := make([]byte, unicode.MaxASCII+1)
        for i := range byt {
            byt[i] = byte(i)
        }
        return string(byt)
    }
    

    Output:

    $ go test ascii_test.go -bench=.
    BenchmarkRange-4    20000000    82.0 ns/op
    BenchmarkIndex-4    30000000    55.4 ns/op
    $
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探