Good morning everyone. I have the following string:
string frutas = "f1,f2,f3,f4,...";
Basically I want it to replace the word that is between the 3rd and 4th comma for something. for example: apple
Looking like this:
f1,f2,maçã,f4,..
How can I do this?