正規表現を使用して重複するマッチを見つける方法
re.findall()を使用する方法:import re text = "Some text with overlapping matches. Matches are overlapping." pattern = r'(?=(\b\w+\b))' matches = re.findall(pattern, text) unique_matches = list(set(matches)) print("重複するマッチ:") print(matches) print("一意のマッチ:") print(unique_matches)>>More