I would like to split a column containing a string with article references into multiple columns in MySQL. For example, the following string
North American Birds 53(1) 1999: 27-29
would be split into ‘North American Birds’, 53, 1, 1999, 27-19. I know I can do some of this with substring_index, but this will not work for splitting the journal name (North American Birds) from the volume (53). Any idea how I can do that?
You can use the number as a separator.
Slow and ugly code, but I guess it works