true "تجربة".is_ascii? # => false 最佳答案 有一个内置的 Ruby 字符串方法适合您。 str.asc-6ren">
gpt4 book ai didi

ruby-on-rails-3 - 如何检查字符串是否为 ASCII?

转载 作者:行者123 更新时间:2023-12-03 23:59:51 26 4
gpt4 key购买 nike

例如类似的东西:

"ASCII".is_ascii? # => true

"تجربة".is_ascii? # => false

最佳答案

有一个内置的 Ruby 字符串方法适合您。

str.ascii_only? # → true or false
对于只有 ASCII 字符的字符串,返回 true。
"abc".force_encoding("UTF-8").ascii_only?          #=> true
"abc\u{6666}".force_encoding("UTF-8").ascii_only? #=> false

关于ruby-on-rails-3 - 如何检查字符串是否为 ASCII?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3797618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com