Personally I like T-SQL's STUFF() function for this. One of the main reasons is that I don't have to care about how long the string can be, swap out 8000 for 4000 if it is NVARCHAR, etc.
SELECT STUFF(@source, 1, 1, '');
EDIT for new/changed requirements we might need to use SUBSTRING after all:
SELECT SUBSTRING(@source, PATINDEX('%[^,]%', @source), 8000);
[Note that this will return all the commas if the string contains nothing but commas.]
You can of course do this with STUFF() still:
SELECT STUFF(@source, 1, PATINDEX('%[^,]%', @source)-1, '');
However this will return NULL for a string that is all commas, so you may want to wrap it in a COALESCE() if NULL is undesirable.