fork(1) download
  1. import re
  2. rx = r"\b[A-Z](?=([&.]?))(?:\1[A-Z])+\b"
  3. s = "My name is STEVE. My friend works at (I.A.). Indian Army(IA). B&W also B&&W Also I...A"
  4. print( [x.group() for x in re.finditer(rx, s)] )
Success #stdin #stdout 0.02s 27768KB
stdin
Standard input is empty
stdout
['STEVE', 'I.A', 'IA', 'B&W']