Description

Regex:

^    "title": "([^\n]*?)",(\n.*?)*?\n    "title": "\1"

Notes
  • Notice the "\1". That matches the first capture group and creates the repetition check.
  • Adapt space at the beginning to fit, or use a wildcard instead.

  • Obviously this can be refined even more.