I want to split a string with all non-alphabetic characters as delimiters.
For example, I want to split this string
"hello1 twenty-three / nine.bye"
into
["hello","","twenty","three","","","nine","bye"]
I've tried this
text.split(/\[A-Za-z]+/)
but it isn't working.
How do I split a string by non-alphabetic characters?