Sep-05-2023, 03:03 PM
(This post was last modified: Sep-05-2023, 04:30 PM by visedwings049.)
I am using Python 3.9
I have created two pandas data frames from csv files
product and supplier
1. I have created a product table that splits a description out into multiple columns.
2. I have created a supplier table that has the supplier product. Many times a supplier product code is in the description of a product.
3. I want to populate the product.supplier code column with any string that is contained in the supplier.product column. In this example we would have found the code widget in column 4 in the supplier table and returned the word widget in the supplier code table.
4. So i want to do this on a loop for column 0 then move on to column 1 and so on.
There will never be two examples of a supplier code in the same string, so i am not worried about overwriting a first instance with a second.
I have tried the str.contains function but this just returns true or false.
I have created two pandas data frames from csv files
product and supplier
1. I have created a product table that splits a description out into multiple columns.
2. I have created a supplier table that has the supplier product. Many times a supplier product code is in the description of a product.
3. I want to populate the product.supplier code column with any string that is contained in the supplier.product column. In this example we would have found the code widget in column 4 in the supplier table and returned the word widget in the supplier code table.
4. So i want to do this on a loop for column 0 then move on to column 1 and so on.
There will never be two examples of a supplier code in the same string, so i am not worried about overwriting a first instance with a second.
I have tried the str.contains function but this just returns true or false.
![[Image: parse-example.png]](https://i.ibb.co/SNywm1L/parse-example.png)