如何從使用python從文本文件讀取的unicode文本中刪除斷行符,即'\ n'?另外,如何測試列表的值是否是unicode字符串中的linebreaker?如何避免從python的文本文件中讀取unicode字符串的斷行符
0
A
回答
0
# Checks if the text is more than 0 symbols. And if the last symbol is "\n"
if len(test) > 0 and test[-1:]=="\n":
# If so, remove the last linebreak
test = test[0:-1]
0
從文本文件中刪除換行符,您可以使用rstrip()可以:
with open('somefile.txt', 'r') as f:
for line in f:
print(line.rstrip())
要測試一個值是否斷行:
for item in some_values:
if item == '\n':
do something
或者,你可以測試如果'\ n'在一行中:
with open('somefile.txt', 'r') as f:
for line in f:
if '\n' in line:
print(line.rstrip())
0
Unicode字符串有t與標準字符串相同的方法,可以使用line.replace(r'\ n','')刪除'\ n'並檢查它是否與'\ n'一起存在於unc
相關問題
- 1. 如何定義從Unicode文件讀取文件的字符串?
- 2. 如何在Unicode中讀取Unicode文件作爲Unicode字符串
- 3. 如何從C++中的文本文件中讀取Unicode符號
- 4. 如何從文本文件中讀取特定的字符串
- 5. 如何從文本文件中讀取unicode並使用Python將各自的字符串寫入exel文件中
- 6. 讀取文件中的Unicode字符C
- 7. Python - 從文本文件中讀取字符串
- 8. 從csv文件讀取unicode字符
- 9. 如何使用CAPL從文本文件中讀取字符串?
- 10. 我如何從文本文件中讀取字符串?
- 11. 如何使用PowerShell從文本文件中讀取字符串
- 12. 如何從文本文件中讀取字符串
- 13. 當從Android的txt文件中讀取unicode文本時附加'a'char字符串
- 14. 如何從文本文件中將字符串轉換爲unicode?
- 15. 從文本文件中讀取字符
- 16. 如何使用python從文本文件中的行讀取特定字符?
- 17. 如何比較從文本文件中讀取單獨行時的字符串
- 18. shell腳本:當我從文件讀取值時如何避免空字符
- 19. 如何讀取utf16文本文件在golang中的字符串?
- 20. 如何從文件讀取XML字符串到字符串?
- 21. Python如何從文件中讀取字符串並插入URL
- 22. python - 如何從文本文件中的每一行提取字符串?
- 23. 將文本文件的行讀取到字符串數組中
- 24. 從文本文件中讀取巨大的字符串
- 25. 在Python中轉義MySQL的unicode字符串(避免exceptions.UnicodeEncodeError)
- 26. 如何以Python中的字符串形式讀取文本文件的名稱?
- 27. 如何從文本文件中提取多行字符串?
- 28. 如何從文本文件行中提取唯一字符串?
- 29. Python從文件中讀取一行作爲字符串
- 30. Python - 從字符串中提取文本