Try this:
split('''jan'',''feb'',''march''', ',')
The problem is that your string is built up with 's, and that's also the string delimiter. So you need to escape (by doubling) those quotes within the string itself.
↧