I want to replace multiple strings. like i have some data in excel cell:
{Client_Id} (trans_Id} {User_Id} and i want to replace {Client_Id} with 1234, {trans_Id} with x23B and {User_Id} with @121bcd. Please suggest to perform this.
Thanks
I want to replace multiple strings. like i have some data in excel cell:
{Client_Id} (trans_Id} {User_Id} and i want to replace {Client_Id} with 1234, {trans_Id} with x23B and {User_Id} with @121bcd. Please suggest to perform this.
Thanks
can you please try this,
I saw that link there its given for different rows, i need to replace different values in same cell
Try this out,
((variable1.replace(“{Client_Id}”,“1234”)).replace(“(trans_Id}”,“x23B”)).replace(“{User_Id}”,“@121bcd”)
Thanks Buddy! It worked