sed help - replacing 6th comma with a space

Hi,

How can I replace the 6th comma on each line (of a csv) with a space?

Any online tutorials with plenty of examples using sed would be very useful.

Alex

Try:

sed 's/,/ /6' file

A useful tutorial:

Sed - An Introduction and Tutorial

perfect, thanks for both...i appreciate it.

alex