Ich brauche Hilfe bei der Deklaration eines regulären Ausdrucks. Meine Eingaben sind wie folgt:
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>
Die erforderliche Ausgabe ist:
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
Ich habe das versucht:
#!/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
Ich habe dies auch versucht (aber es scheint, als würde ich die falsche Regex-Syntax verwenden):
line2 = line.replace('<[*> ', '')
line = line2.replace('</[*> ', '')
line2 = line.replace('<[*>', '')
line = line2.replace('</[*>', '')
Ich möchte die replace
von 1 bis 99 nicht hart codieren . . .
where the<[99> number ranges from 1-100</[100>
?
<...>
Tag entfernen , so dass die Ausgabe sein solltewhere the number rangers from 1-100 ?