Combines single-character alternatives.
This rule will try to combine as many character classes as possible to simplify the regular expression.
E.g. a|b|c => [abc].
a|b|c
[abc]
Optional
Combines single-character alternatives.
This rule will try to combine as many character classes as possible to simplify the regular expression.
E.g.
a|b|c
=>[abc]
.