开发者

Replace newlines in a Unicode string

开发者 https://www.devze.com 2022-12-19 18:06 出处:网络
I am trying to replace newline characters in a unicode string and seem to be missing some magic codes.

I am trying to replace newline characters in a unicode string and seem to be missing some magic codes.

My particular example is that I am working on AppEngine and trying to put titles from HTML pages into a db.StringProperty() in my model.

So I do something like:

link.title = unicode(page_title,"utf-8").replace('\n','').replace('\r','')

and I get:

Property ti开发者_JAVA技巧tle is not multi-line

Are there other codes I should be using for the replace?


Try ''.join(unicode(page_title, 'utf-8').splitlines()). splitlines() should let the standard library take care of all the possible crazy Unicode line breaks, and then you just join them all back together with the empty string to get a single-line version.


Python uses these characters for splitting in unicode.splitlines():

  • U+000A LINE FEED (\n)
  • U+000D CARRIAGE RETURN (\r)
  • U+001C FILE SEPARATOR
  • U+001D GROUP SEPARATOR
  • U+001E RECORD SEPARATOR
  • U+0085 NEXT LINE
  • U+2028 LINE SEPARATOR
  • U+2029 PARAGRAPH SEPARATOR

As Hank says, using splitlines() will let Python take care of all of the details for you, but if you need to do it manually, then this should be the complete list.


It would be useful to print the repr() of the page_title that is seen to be multiline, but the obvious candidate would be '\r'.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号