Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best way to remove the first comma from the following string? The result should be 'TEST,e,er,t'

DECLARE @source VARCHAR(100)
SET @source = ',TEST,e,er,t'

EDIT: what is the best way to remove all the leading commas, if there are more than one comma?

Thanks

Lijo

share|improve this question

4 Answers

up vote 3 down vote accepted

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.

share|improve this answer
I agree. One more question, what is the best way to remove all the leading commas? – Lijo Jul 29 '11 at 14:30

No need to evaluate LEN...

SUBSTRING(@source, 2, 8000)
share|improve this answer
You mean SELECT SUBSTRING(@source, 2, LEN(@source)) is generic solution. However, put a hard coded value instead of using LEN, right? – Lijo Jul 29 '11 at 13:58
@Lijo: no, I mean use 8000. It doesn't add extra spaces at the end and it doesn't change the length. Why evalute LEN? What value does it add? And If you had trailing spaces, you'd lose them with LEN – gbn Jul 29 '11 at 14:01
DECLARE @source VARCHAR(100);
SELECT @source = ',TEST,e,er,t';

SELECT @source = SUBSTRING(@source, 2, LEN(@source) - 1);

The best way would be if you could take advantage of how the string is being built so that the delimiter doesn't get placed there to begin with.

share|improve this answer
Why evaluate LEN? It will remove trailing spaces which may be needed (or may not) of course... – gbn Jul 29 '11 at 13:57
It can be hard to control the building of the string - it may be done in some other application, it may be done using FOR XML PATH, etc. – Aaron Bertrand Jul 29 '11 at 14:43

You can use STUFF

DECLARE @source VARCHAR(100);
SELECT @source = ',TEST,e,er,t';

PRINT STUFF(@source,1,1,'')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.