regexSpecialChars top-level constant

String const regexSpecialChars

Matches any character that is not ASCII letter, digit, or space.

Implementation

const String regexSpecialChars = '[^a-zA-Z0-9 ]';