dmitrey wrote: > hi all, > howto split string with both comma and semicolon delimiters? > > i.e. (for example) get ['a','b','c'] from string "a,b;c" > > I have tried s.split(',;') but it don't work > Thx, D. Howabout: s = s.replace(";", ",") s = s.split(",")