These patterns readily target small ranges:
voice[1-3], string[3-6].
The inexperienced might expect that egg[7-12] would work to address a larger range. Regular expressions match strings of characters not numbers so for larger ranges you need to draw from a longer lexical sequence: use instead: egg[g-l].