콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
4963 화면

purchase order line has a field "name" witch is the SKU + Product Name +',' + suppliers product desc. 

if I split name on ',' and print the supplier product desc. part of the array it writes a string starting with u' (unicode)

how do i encode the string so it is printed correct?


Prints something like:

[SKU-123] Product Name

[u'Vendors product description \u0142a + bla bla']


How do print it correctly?

 


아바타
취소
베스트 답변

Try this,

unicode_string = unicode_string.encode('ascii','ignore')

Here I update my answer, you cant encode the list object, you need to encode the list elements, i.e. list[0], list[1] or in whatever index that your target value is sitting.

list_element = list_element[0].encode('ascii','ignore')


아바타
취소
작성자 베스트 답변

yeah .. i forgot to tell i already tried that but with utf8. I doesn't work.


QWebException: 'list' object has no attribute 'encode'


아바타
취소
관련 게시물 답글 화면 활동
2
9월 24
2107
2
11월 22
5446
5
8월 19
46713
4
6월 18
20298
0
6월 18
3463