KOB
KOB

Reputation: 4545

Filter by string column as a substring of another string

I am trying to filter a dataframe by a string column. I would like the filter to return all rows where this string column is a substring of another string. Any searching I do for this problem leads to results about the converse - filtering a dataframe where a string columns contains a substring.

In other words, what I am attempting to achieve is:

df[df["string_column"] in "some_string"]

or

df[df["string_column"].str.is_substring_of("some_string")]

not

df[df["string_column"].str.contains("some_string")]

Upvotes: 2

Views: 152

Answers (2)

Haseeb Ayoub
Haseeb Ayoub

Reputation: 11

df[[True if i in 'some_string' else False for i in df["string_column"]]]

Upvotes: 0

Lorenzo Bonetti
Lorenzo Bonetti

Reputation: 590

df[df["string_column"].apply(lambda x: x in "some_string")]

Upvotes: 1

Related Questions