I have a string like below
"‘‘Apple’’ It is create by Steve Jobs (He was fired and get hired) ‘‘Microsoft’’ Bill Gates was the richest man in the world ‘‘Oracle’’ It is a database company"
I am able to manage to use regex to create groups of Apple, Microsoft and Oracle by using ‘‘(.*?)’’ but how should I extract the other sentence part to list?
What I want to create
companyList = ['Apple','Microsoft','Oracle']
descriptionList = ['It is create by Steve Jobs (He was fired and get hired)','Bill Gates was the richest man in the world','It is a database company']
Thank you in advance
‘‘Apple’’ or ‘‘AAPL’’ It is create by Steve Jobs (He was fired and get hired) ‘‘Microsoft’’ Bill Gates was the richest man in the world ‘‘Oracle’’ It is a database company, what is the expected output? Also, can there be any‘or’inside‘‘...’’?