商品に関する文字列が多数あります。これらにはそれぞれ参照番号があり、異なる参照番号が複数回言及されている場合に取得する正規表現を作成したいと考えています。したがって、次の例が与えられます。
"AB01 MyProduct" >>> No match - because there is only one ID
"AB02 MyOtherProduct" >>> No match - because there is only one ID
"AB03 YetAnotherProduct" >>> No match - because there is only one ID
"AnAccessory for AB01, AB02, AB03 or AB101" >>> Matches!!
"AB02 MyOtherProduct, MyOtherProduct called the AB02" >>> No match - because the codes are the same
誰でも私に手がかりを与えることができますか?