If the advanced
+ /// bool ok = NumericRegex.IsMatch(s);
+ ///
+ /// A string is encodable iff each character is in the range 0 to 9.
+ ///
+ /// bool ok = AlphanumericRegex.IsMatch(s);
+ ///
+ /// A string is encodable iff each character is in the following set: 0 to 9, A to Z
+ /// (uppercase only), space, dollar, percent, asterisk, plus, hyphen, period, slash, colon.
+ ///