{{{ import re txt = open('ff6_music_osv.htm','r') text = txt.read() oho = re.compile('') text = oho.sub('',text) txt = open('ff6_music_osv.htm','w') txt.write(text) }}}