নিম্নলিখিত কোড প্রদত্ত স্ট্রিংগুলি থেকে first_id, second_id, বিভাগ মত ডেটা বের করে
উদাহরণ
import re s = 'TS001B01.JPG' match = re.match(r'(TS\d+)([A|B])(\d+)\.JPG', s) first_id = match.group(1) category = match.group(2) second_id = match.group(3) print first_id print category print second_id
আউটপুট
এটি আউটপুট দেয়
TS001 B 01