Parse a string into a range of integers.
"1" -> [1] "1-4" -> [1, 2, 3, 4] "4-1" -> [integer::]
"1"
"1-4"
"4-1"