Tôi cần một số trợ giúp về việc khai báo một regex. Đầu vào của tôi giống như sau:
this is a paragraph with<[1> in between</[1> and then there are cases ... where the<[99> number ranges from 1-100</[99>.
and there are many other lines in the txt files
with<[3> such tags </[3>
Đầu ra cần thiết là:
this is a paragraph with in between and then there are cases ... where the number ranges from 1-100.
and there are many other lines in the txt files
with such tags
Tôi đã thử điều này:
#!/usr/bin/python
import os, sys, re, glob
for infile in glob.glob(os.path.join(os.getcwd(), '*.txt')):
for line in reader:
line2 = line.replace('<[1> ', '')
line = line2.replace('</[1> ', '')
line2 = line.replace('<[1>', '')
line = line2.replace('</[1>', '')
print line
Tôi cũng đã thử điều này (nhưng có vẻ như tôi đang sử dụng cú pháp regex sai):
line2 = line.replace('<[*> ', '')
line = line2.replace('</[*> ', '')
line2 = line.replace('<[*>', '')
line = line2.replace('</[*>', '')
Tôi không muốn mã cứng replace
từ 1 đến 99. . .
where the<[99> number ranges from 1-100</[100>
?
<...>
thẻ, vì vậy đầu ra phải làwhere the number rangers from 1-100 ?