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.

I would like to replace (or remove) a newline character in a TSQL-string. Any Ideas?

(UPDATE) The obvious

REPLACE(@string,CHAR(13),'')

just won't do it...

share|improve this question
Because, as written, it's a dumb question, with an obvious answer. You should have edited your question to include the fact that you'd tried something and that it didn't work. You should then have answered the question with the correct answer. "I'm asking in order to answer". – John Saunders Jun 4 '09 at 16:22
5  
@John you should probably read the FAQ on SO. FTA: No question is too trivial or too "newbie". - stackoverflow.com/faq – Joseph Jun 4 '09 at 16:28
1  
@John: I seen much dumber/badly-formatted/incoherently-phrased/abysmally-spelled/easily-googled questions that get furiously upvoted. No, I think this question is valid. – Cerebrus Jun 4 '09 at 16:34
@John, since your point is partly taken, I have updated the question a bit. – Peter Jun 4 '09 at 16:35
1  
@Peter et. al, I said, "As written". He's changed how it was written, so I've removed the -1. – John Saunders Jun 4 '09 at 18:20

4 Answers

up vote 38 down vote accepted
REPLACE(@string, CHAR(13)+CHAR(10), '')
share|improve this answer
Is chr working? isn't it char? – Peter Jun 4 '09 at 16:16
ah, sorry typo! – Mitch Wheat Jun 5 '09 at 1:56

Actually a new line in a SQL command or script string can be any of CR, LF or CR+LF. To get them all, you need something like this:

SELECT REPLACE(REPLACE(@str, CHAR(13), ''), CHAR(10), '')
share|improve this answer
This is also a good answer, but you should change the CHAR(11) to CHAR(10) for a linefeed to match ;-) Then I'll vote you up. – Oliver Apr 1 '11 at 18:21
yup. right you are. – RBarryYoung Apr 4 '11 at 3:37
FWIW, this is my favorite way to do this. – danieljimenez Aug 2 '12 at 18:12
It worked well for me to just replace CHAR(10) – Niels Brinch Mar 14 at 11:57
2  
@NielsBrinch That will work fine as long as that's the only type of line break in your strings. But SQL Server does support all three types. In fact, if you've ever extracted all of the system stored procedures and scripted views, you can find instances of all three as used by Microsoft themselves. – RBarryYoung Mar 14 at 18:22
show 1 more comment

The Newline in T-SQL is represented by CHAR(13) & CHAR(10) (Carriage return + Line Feed). Accordingly, you can create a REPLACE statement with the text you want to replace the newline with.

REPLACE(MyField, CHAR(13) + CHAR(10), 'something else')
share|improve this answer
+ 1, i accepted Mitch Wheat cause he came up with it first (event though the chr function doesnt exist in my tsql) – Peter Jun 4 '09 at 16:23
Hey, no problem! Mitch rocks as usual. Few guys can be as fast as him. ;-) – Cerebrus Jun 4 '09 at 16:31
@Cerebrus: not sure that's true! ;) (voted you up as yours was correct) – Mitch Wheat Jun 5 '09 at 1:57

Did you consider the REPLACE function?

share|improve this answer
sure, i got stuck on char(13) forgetting the CR at first, then asked the question because i thought it should be in SO – Peter Jun 4 '09 at 16:22

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.