vote up 0 vote down star

From my experiments, it does not appear to do so. If this is indeed true, what is the best method for removing line breaks? I'm currently experimenting with the parameters that TRIM accepts of the character to remove, starting with trimming \n and \r.

flag

5 Answers

vote up 2 vote down check

Trim() in MySQL only removes spaces.

I don't believe there is a built-in way to remove all kinds of trailing and leading whitespace in MySQL, unless you repeatedly use Trim().

I suggest you use another language to clean up your current data and simply make sure your inputs are sanitized from now on.

link|flag
Yes, new inputs are sanitized, but dealing with old data is...well...not fun. – Thomas Owens Nov 11 '08 at 18:36
Ha, of course. But if you've got a list of fields which must not have trailing or leading whitespace, you should be able to write a one-off program that will fix up your current data -- 99% of programming languages have a Trim() that will do what you're looking for. – Peter Crabtree Nov 11 '08 at 18:41
vote up 0 vote down

select trim(both '\n' from FIELDNAME) from TABLE;

link|flag
This does not work as it appears the newline in MySQL is not the \n. – Thomas Owens Nov 11 '08 at 18:39
Ah, well. Cheers! – Jason Lepack Nov 11 '08 at 20:44
vote up 0 vote down

select trim(both '\r\n' from FIELDNAME) from TABLE; should work if select trim(both '\n' from FIELDNAME) from TABLE doesnt work;

link|flag
vote up 0 vote down

i could only get it to work by making the char;

trim(both char(13) from fieldname)

link|flag
vote up 0 vote down

My line breaks were in the middle of the string, and I didn't have control over the source data. The following mysql command worked for me:

REPLACE(FIELD,'\r\n',' ')
link|flag

Your Answer

Get an OpenID
or

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