in reply to [solved] Replace ".." with ","
Also, use the /g modifier to replace all the occurrences on each line.
s/\.\./,/g # or s/[.][.]/,/g [download]