I have a string like below
1 Si5332DD13075-AM2 Automotive grade (105C) 8-output clock generator 11/11/21 500.00
I want to replace string with ,.
Please help
I have a string like below
1 Si5332DD13075-AM2 Automotive grade (105C) 8-output clock generator 11/11/21 500.00
I want to replace string with ,.
Please help
Hi
Use the below expression
If the above string is in a variable named Strinput
Then in assign activity
Strinput = Strinput.ToString.Replace(“your old word”, “your new word”)
Cheers @Sudish_Babu
Hi @Sudish_Babu,
Can you explain you’re issue more specific which would be easier to give the right solution?
Regards,
@90s_Developer