fork download
  1. import re
  2. obj = re.search(r'@CAD_DTA\\">(.+?)@G@H@CAD_LBL', 'Some text here...@CAD_DTA\\">I WANT THIS@G@H@CAD_LBL')
  3. print obj.start(1)
  4. print obj.group(1)
  5.  
Success #stdin #stdout 0.01s 7692KB
stdin
Standard input is empty
stdout
28
I WANT THIS