Skip to content
Advertisement

Python replacing partial matching text based on a list of elements in data frame

I have built a dataframe that extracts data through a scraper. I extracted job positions, and currently, this column contains job positions as follows:

JavaScript

I would like to replace these titles with the following titles:

JavaScript

How can I look for partial text and replace it? I don’t want to fully replace the text if it’s not a 100% match. For example ‘Visiting Assistant Professor of Law’ should be replaced with ‘Assistant Professor’

Thank you!

Advertisement

Answer

Use str.extract:

JavaScript

output:

JavaScript

If you want to keep the original Title in case of no match, use:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement