I have string like this
s ='Jacky Chan || He is a CEO ||Managing Director and General Partner, B Robotics || San Francisco Bay Area'
How can I filter out "He is a CEO" part based on keyword "CEO" within the string to look like this using python?
output:
'Jacky Chan||Managing Director and General Partner, B Robotics || San Francisco Bay Area'
||, you can calls.split('||')and that will return a list of the separate parts.