vote up 0 vote down star

This feels like it should be an easy one, but I'm having trouble cleaning out the newline character in content pasted from Microsoft Word. Not a full line-break, but the CTRL-ENTER character that shows up as a return arrow in Word. I've tried chr(10), chr(13), \u000D, \u000A and a few others, but I can't match it in a string.replace(). Should I be looking for a different character or do I need to use something other than the string.replace method?

flag

75% accept rate
Care to give some examples? – sykora May 21 at 15:22
May be read the text byte by byte and print ordinal of it? for c in text: print ord(c) – Anurag Uniyal May 21 at 15:30

2 Answers

vote up 4 vote down check

Run this:

print repr(mystringobject)

That will give a hint of which character you want to remove.

If still no clue, paste the result of the command above in the question, and I'll edit my answer.

link|flag
Thanks to both you and Chris. It was \x0b – Tom May 21 at 15:32
vote up 1 vote down

you can get the ASCII value of the character like this:

for c in 'string':
    print ord(c), hex(ord(c))

once you know the code, it should be easy to kill the offender.

link|flag

Your Answer

Get an OpenID
or

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