Merge pull request #1799 from triska/roman_numerals
ENHANCED: allow Roman numerals in strings
This commit is contained in:
@@ -20,7 +20,7 @@ macro_rules! alpha_char {
|
||||
#[macro_export]
|
||||
macro_rules! alpha_numeric_char {
|
||||
($c: expr) => {
|
||||
$crate::alpha_char!($c) || $crate::decimal_digit_char!($c)
|
||||
$crate::alpha_char!($c) || $c.is_numeric()
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user