Splits the input at the matches of this regular expression into an array of slices.
import tango.io.Stdout; import tango.text.Regex; void main() { auto strs = Regex("ab").split("abcabcababqwer"); foreach( s; strs ) Stdout.formatln("{}", s); } // Prints: // c // c // qwer
See Implementation
Splits the input at the matches of this regular expression into an array of slices.