vote up 6 vote down star

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...

flag

1  
I deliberately added this question to be on SO. The combination of linefeed an CR can be overlooked. I think however sets this to minus one isn't getting the goals of SO. – Peter Jun 4 at 16:20
2  
I dont agree the answer is that obvious, in many languages theres one construct for LF/CR. Several people have struggled with it, just replacing the chr(13) without result. – Peter Jun 4 at 16:27
2  
@John you should probably read the FAQ on SO. FTA: No question is too trivial or too "newbie". - stackoverflow.com/faq – Joseph Jun 4 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 at 16:34
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 at 18:20
show 3 more comments

4 Answers

vote up 7 vote down check
REPLACE(@string, CHAR(13)+CHAR(10), '')
link|flag
Is chr working? isn't it char? – Peter Jun 4 at 16:16
ah, sorry typo! – Mitch Wheat Jun 5 at 1:56
vote up 1 vote down

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(11), '')
link|flag
vote up 4 vote down

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')
link|flag
+ 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 at 16:23
Hey, no problem! Mitch rocks as usual. Few guys can be as fast as him. ;-) – Cerebrus Jun 4 at 16:31
@Cerebrus: not sure that's true! ;) (voted you up as yours was correct) – Mitch Wheat Jun 5 at 1:57
vote up 1 vote down

Did you consider the REPLACE function?

link|flag
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 at 16:22

Your Answer

Get an OpenID
or

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