I carefully read the post Select by partial string from a pandas DataFrame but I think it doesn't address my problem. I need to filter rows of a dataframe if a row value can be found within the string.
Example, my table is:
Part_Number
A1127
A1347
I want to filter records if column value is within the string ZA1127B.48
. The filtered dataframe should contain row 1
. (All the posts show how to check if row value contains a string.)