How to check a String if it's an ASCII or not?

Viewed 9062

For example something like:

"ASCII".is_ascii? # => true

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