中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python分割器怎么使用

發布時間:2021-12-01 14:07:48 來源:億速云 閱讀:142 作者:iii 欄目:編程語言

這篇文章主要講解了“Python分割器怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python分割器怎么使用”吧!

  1. # 將txt小說分割轉換成多個HTML文件   

  2. # @author : GreatGhoul   

  3. # @email : greatghoul@gmail.com   

  4. # @blog : http://greatghoul.javaeye.com   

  5. import re   

  6. import os   

  7. # regex for the section title   

  8. # sec_re = re.compile(r'第.+卷\s+.+\s+第.+章\s+.+')   

  9. # txt book's path.   

  10. source_path = 'f:\\傭兵天下.txt'   

  11. path_pieces = os.path.split(source_path)   

  12. novel_title = re.sub(r'(\..*$)|($)', '', path_pieces[1])   

  13. target_path = '%s%s_html' % (path_pieces[0], novel_title)   

  14. section_re = re.compile(r'^\s*第.+卷\s+.*$')   

  15. section_head = '''''   

  16. <html>   

  17. <head>   

  18. <meta http-equiv="Content-Type" content="GBK"/>   

  19. <title>%s</title>   

  20. </head>   

  21. <body style="font-family:楷體,宋體;font-size:16px; 
    margin:0;   

  22. padding: 20px; background:#FAFAD2;color:#2B4B86;text
    -align:center;">   

  23. <h3>%s</h3><a href="#bottom">去頁尾</a><hr/>'''   

  24. # escape xml/html   

  25. def escape_xml(code):   

  26. text = code   

  27. text = re.sub(r'<', '&lt;', text)   

  28. text = re.sub(r'>', '&gt;', text)   

  29. text = re.sub(r'&', '&amp;', text)   

  30. text = re.sub(r'\t', '&nbsp;&nbsp;&nbsp;&nbsp;', text)   

  31. text = re.sub(r'\s', '&nbsp;', text)   

  32. return text   

  33. # entry of the script   

  34. def main():   

  35. # create the output folder   

  36. if not os.path.exists(target_path):   

  37. os.mkdir(target_path)   

  38. # open the source file   

  39. input = open(source_path, 'r')   

  40. sec_count = 0   

  41. sec_cache = []   

  42. idx_cache = []   

  43. output = open('%s\\%d.html' % (target_path, sec_count), 'w')   

  44. preface_title = '%s 前言' % novel_title   

  45. output.writelines([section_head % (preface_title, 
    preface_title)])   

  46. idx_cache.append('<li><a href="%d.html">%s</a></li>'   

  47. % (sec_count, novel_title))   

  48. for line in input:   

  49. # is a chapter's title?   

  50. if line.strip() == '':   

  51. pass   

  52. elif re.match(section_re, line):   

  53. line = re.sub(r'\s+', ' ', line)   

  54. print 'converting %s...' % line   

  55. # write the section footer   

  56. sec_cache.append('<hr/><p>')   

  57. if sec_count == 0:   

  58. sec_cache.append('<a href="index.html">目錄</a>&nbsp;|&nbsp;')   

  59. sec_cache.append('<a href="%d.html">下一篇</a>&nbsp;|&nbsp;'   

  60. % (sec_count + 1))   

  61. else:   

  62. sec_cache.append('<a href="%d.html">上一篇</a>&nbsp;|&nbsp;'   

  63. % (sec_count - 1))   

  64. sec_cache.append('<a href="index.html">目錄</a>&nbsp;|&nbsp;')   

  65. sec_cache.append('<a href="%d.html">下一篇</a>&nbsp;|&nbsp;'   

  66. % (sec_count + 1))   

  67. sec_cache.append('<a name="bottom" href="#">回頁首</a></p>')   

  68. sec_cache.append('</body></html>')   

  69. output.writelines(sec_cache)   

  70. output.flush()   

  71. output.close()   

  72. sec_cache = []   

  73. sec_count += 1   

  74. # create a new section   

  75. output = open('%s\\%d.html' % (target_path, sec_count), 'w')   

  76. output.writelines([section_head % (line, line)])   

  77. idx_cache.append('<li><a href="%d.html">%s</a></li>'   

  78. % (sec_count, line))   

  79. else:   

  80. sec_cache.append('<p style="text-align:left;">%s</p>'   

  81. % escape_xml(line))   

  82. # write rest lines   

  83. sec_cache.append('<a href="%d.html">下一篇</a>&nbsp;|&nbsp;'   

  84. % (sec_count - 1))   

  85. sec_cache.append('<a href="index.html">目錄</a>&nbsp;|&nbsp;')   

  86. sec_cache.append('<a name="bottom" href="
    #">回頁首</a></p></body></html>')   

  87. output.writelines(sec_cache)   

  88. output.flush()   

  89. output.close()   

  90. sec_cache = []   

  91. # write the menu   

  92. output = open('%s\\index.html' % (target_path), 'w')   

  93. menu_head = '%s 目錄' % novel_title   

  94. output.writelines([section_head % (menu_head, menu_head), 
    '<ul style="text-align:left">'])   

  95. output.writelines(idx_cache)   

  96. output.writelines(['</ul><body></html>'])   

  97. output.flush()   

  98. output.close()   

  99. inx_cache = []   

  100. print 'completed. %d chapter(s) in total.' % sec_count   

  101. if __name__ == '__main__':   

  102. main()  

感謝各位的閱讀,以上就是“Python分割器怎么使用”的內容了,經過本文的學習后,相信大家對Python分割器怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

渭源县| 长海县| 馆陶县| 汝阳县| 长泰县| 堆龙德庆县| 博罗县| 陈巴尔虎旗| 巴南区| 延吉市| 定结县| 晋城| 太原市| 安庆市| 万州区| 垫江县| 蒲城县| 富民县| 株洲县| 鄂伦春自治旗| 固始县| 夏津县| 东丰县| 巨鹿县| 东乌珠穆沁旗| 岳西县| 河北省| 东兰县| 兴安盟| 正安县| 霍林郭勒市| 嘉义市| 闸北区| 隆昌县| 阿克苏市| 洪雅县| 绍兴县| 永昌县| 德清县| 长丰县| 江陵县|