Constant voca_rs::utils::PRINTABLE

source ·
pub const PRINTABLE: &'static str = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r";
Expand description

String of ASCII characters which are considered printable. This is a combination of digits, ascii_letters, punctuation, and whitespace.

Example

use voca_rs::*;
utils::PRINTABLE;
// => 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r