I have 2 data sets that I am trying to compare 1 to 1, but this is split across 3 columns and the way the fields are concatenated is difference.
Data set 1 has 1 column with a concatenation of String 1, String 2, and String 3, while Dataset 2 has one column containing a concatenation of String 1 and String 3 and another column with String 2.
Data set 1
Column 1: String 1 + String 2 + String 3
Data set 2
Column 2: String 1 + String 3
Column 3: String 2
There is no pattern of what type of data could be in each string - it is not limited to words, addresses, IDs, etc and none of the fields have a predictable or set length. I am wondering if it is possible to first compare the left and right of Column 1 to Column 2, and then take the area in the middle that stopped matching from Column 1 to Column 2 to then compare to Column 3. We are looking to not use fuzzy match if at all possible.
Example:
Data set 1
Column 1: UX4759d452regcustdelivery
Data set 2
Column 2: UX4759regcustdelivery
Column 3: d452
Thank you very much in advance for your consideration.