I have this pattern
a,abc_def_eghi
1,234_556
5,567_987_ghi
I want to replace the first _ with a ",". I know %s/old/new/g to replace contents in vim.
Result
a,abc,def_eghi
1,234,556
5,567,987_ghi
Could you suggest some alternatives to go about it