How to handle double quotes in split?

Input: “Python for Beginners”, “Data Engineering Essentials - Python, SQL and Spark”, “Apache Spark and Databricks for Beginners”

Expected output: [ “Python for Beginners”, “Data Engineering Essentials - Python, SQL and Spark”, “Apache Spark and Databricks for Beginners”]

@itversity
Using match pattern module.
Reg exp sample: “([^“”]*)”

Can I link iterator with text parser?