I have a string that is made up of a list of numbers, seperated by commas. How would I add a space after each comma using Regex?
Don't use a regex for this, use split and join.
It's simpler and faster :)
'1,2,3,4,5,6'.split(',').join(', '); // '1, 2, 3, 4, 5, 6'