Update parseCharacterRanges with dashless

This commit is contained in:
Clemens Schwaighofer
2026-01-14 10:54:54 +09:00
parent bfc82e12a5
commit 45487b0039
2 changed files with 9 additions and 0 deletions

View File

@@ -287,6 +287,10 @@ class Strings
// Remove all spaces
$input = str_replace(' ', '', $input);
$result = [];
// if there is no - inside, return unique characters as array
if (strpos($input, '-') === false) {
return array_unique(mb_str_split($input));
}
// Find all patterns like "A-Z" (character-dash-character)
preg_match_all('/(.)-(.)/u', $input, $matches, PREG_SET_ORDER);
foreach ($matches as $match) {