I have nearly 35 rows and 5000+ columns where in that one of the row has information as in firstname,lastname email_id. Here i wanted this to be splitted into Firstname,Lastname in newly added column and email_id in another newly added column of the excel sheet.
I want the result to be in 2 newly added columns like, 1st column : Mudiar, Yashas 2nd column : yashas.mudiar@gmail.com
One this is done, the newly added email id column has to be compared with another excel sheet for the emiail id.
Can anyone please help me here. It is really urgent I dont have any idea to implement this logic in UiPath.
Kindly help me asap.
Please respond back for any further clarifications.
For each row get the value of the column which contains the required data.
Split the obtained column on the basis of space.
Look for part that contains β@β , assign it to email filed.
Now remove the obtained email filed from the column filed and split the remaining on the basis of β,β
Assign the obtained results in the first name and second name.
Keep adding records in the final table which will contain the splited values.
Write the final table in the input value.
Note : If you just want the name and email IDs then you can avoid the second split, and just replace the email ID and assign the values to required columns. The attached solution works for all types of name (where the second name part can have two or more spaces)