ascii?

check if given character/string is in ASCII


Parameters

ascii? string :char :string

Returns

  • :logical

Examples

copy
ascii? `d` ; true

copy
ascii? `😀` ; false ascii? "hello world" ; true ascii? "Hællø wœrld" ; false ascii? "Γειά!" ; false

Related