मुझे regex घोषित करने में कुछ मदद चाहिए। मेरे इनपुट निम्न प्रकार हैं:
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 ?