Welcome, guest | Sign In | My Account | Store | Cart

text文本转化为html文本

Python, 34 lines
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#coding:gb2312
#基本完成了参照文本文档产生html换行的功能
#下一步是:产生关于定位键table的处理
#然后是特殊符号的处理
import re
break_win=chr
0x0d
+chr
0x0a
bre="\x0d\x0a"
word="[^
\x0d\x0a
]+"
bre_jihe=re.compile
bre
word_jihe=re.compile
word
input=file
"d://The Zen of Python.txt","r"
.read
print bre_jihe.findall
input
word_list=word_jihe.findall
input
#print word_list
f_out=file
"c://output.txt","w"
for i in word_list:
print i
out=i+"
"
f_out.write
out
f_out.close
Created by nillgump nillgump on Sun, 22 Feb 2009 (MIT)
Python recipes (4591)
nillgump nillgump's recipes (6)

Required Modules

  • (none specified)

Other Information and Tasks