I have a dataframe that has two similar phrases, for example 'Hello World' and 'Hello World 1'. I want to match only the 'Hello World' string.
I am currently using: dataframe['Phrase'].str.match('Hello World') But this obviously returns both the phrases 'Hello World' and 'Hello World 1'. Is there a way to match on only the phrase exactly ?