I have two dataframes with varying information, but both dataframes have an account_number column that I was hoping to do a merge with.
The problem lies in this:
One of the dataframes has the full account numbers, for example 12345678 and the other dataframe has masked account numbers except for the last four digits so it would be like ****5678.
I know for sure that all the last four digits are different for each account number, so how would I go about merging the dataframes together in an inner join if the last four digits match?
Thank you for all your help.