রেজেক্স ঘোষণার জন্য আমার কিছু সহায়তা দরকার। আমার ইনপুটগুলি নিম্নলিখিতগুলির মতো:
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 ?