html页⾯正则表达式替换空格,正则表达式匹配html属性中的空
格
如果您使⽤的是TextMate,那么您使⽤的是Mac,因此使⽤Python。
尝试这个:
#!/usr/bin/env python
import re
input = open('test.html', 'r')
p_spaces = repile(r'^.*rel="[^"]+".*$')
for line in input:
matches = p_spaces.findall(line)
for match in matches:
new_rel = place(' ', '_')
line = place(match, new_rel)
print line,⽰例输出:
$ cat test.html
testing, testing, 1, 2, 3
Stuff
aoseuaoeuahtml中的5种空格表示
$ ./test.py
testing, testing, 1, 2, 3
Stuff
aoseuaoeua
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论