fork download
  1. import re
  2.  
  3. input = """I really like "Game of Thrones"""
  4. pattern = r'[^"]+(?= ")'
  5. print(re.search(pattern, input).group())
Success #stdin #stdout 0.02s 9472KB
stdin
Standard input is empty
stdout
I really like