正規表現を宣言するのに助けが必要です。私の入力は次のようなものです:
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>
必要な出力は次のとおりです。
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
私はこれを試しました:
#!/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
私もこれを試しました(ただし、間違った正規表現構文を使用しているようです):
line2 = line.replace('<[*> ', '')
line = line2.replace('</[*> ', '')
line2 = line.replace('<[*>', '')
line = line2.replace('</[*>', '')
replace
1から99までをハードコードしたくありません。。。
where the<[99> number ranges from 1-100</[100>
ですか?
<...>
タグ内の番号も削除されるため、出力はwhere the number rangers from 1-100 ?