什麼是Perl的Encode::_utf8_off
的等效函數?perl Encode :: _ utf8_off in python
回答
你應該從來沒有有史以來使用Encode::_utf8_off
。
您可能正嘗試使用UTF-8編碼字符串。在Perl中,你可以使用任何如下:
utf8::encode($s);
utf8::encode(my $utf8 = $uni);
use Encode qw(encode_utf8); my $utf8 = encode_utf8($uni);
use Encode qw(encode); my $utf8 = encode('UTF-8', $uni);
我不知道Python,但快速搜索發現
utf8 = uni.encode('UTF-8', 'strict')
我的問題類似於:http://stackoverflow.com/questions/12994100/perl-encode-pm-cannot-decode-string-with-wide-character Encode :: _ utf8_off解決了我的問題。但我的腳本的一部分是在python和python腳本有相同的問題。所以我在Python中尋找相同的函數,以便我可以在那裏應用。 –
我重複一遍:永遠不要使用'Encode :: _ utf8_off'。孟露正在傳遞一些沒有編碼的東西來「解碼」。孟露問題的解決方案不是添加'_utf8_off'。解決方案是修復他們的錯誤代碼。 – ikegami
嘿..謝謝,我會嘗試utf :: downgrade。但只是想知道,你能解釋爲什麼我永遠不要使用Encode :: _ utf8_off? –
- 1. python encode()
- 2. encode Netbios name python
- 3. wp.uploadFile xmlrpc python encode base64
- 4. Decode Hash :: MultiValue in perl
- 5. 如何「昂貴」是Perl的Encode :: Detect :: Detector
- 6. Python:.encode('ascii','ignore')做什麼?
- 7. ls -ltr in perl
- 8. awk gsub in perl
- 9. Muetexes in perl&MySQL
- 10. 使用$/in perl
- 11. 如何在Python中使用.encode('utf-8')?
- 12. 在Python中使用unicode()和encode()函數
- 13. 什麼是/ [Cc] at/in perl?
- 14. Perl:utf8 :: decode與Encode :: decode
- 15. hmac sha-256 in perl
- 16. Oneliner -a-switch - in Perl
- 17. sed in perl腳本
- 18. Python 2.6:encode()不帶關鍵字參數
- 19. Vector3 in Meep in Python
- 20. .htaccess encode%{QUERY_STRING}
- 21. Datatables encode HTML
- 22. Codec.Binary.Base64.encode是慢
- 23. Swift encode WhatsApp URL
- 24. PHP 4.4.1 JSON ENCODE
- 25. C#mvc2 encode url
- 26. @encode對面
- 27. Encode Emoji圖標
- 28. Zend :: encode + blob
- 29. 相當於@encode
- 30. URL-Encode javascript
不要以另一種語言給出函數的名稱,請說出你想要做的事情。 – ikegami