I found a little mistake, when I enter my email, find results that do not match expectations and the result is a symbol '@' turned into '%40', I would like to change the text '%40' became a symbol of a '@'. ok simple question, if found ' %40' row character strings automatically becomes the symbol of ' @'.
the code below can only work 1 time, but I would like to find any text '%40' in his Fox be @
char text[4080] = "asdnisadnias%40gmail.com,userd%40gmail.com,aas%40mail.com";
string data = text;
size_t post;
post = data.find("%40");
data.replace(post,3,"@");
cout<<data;
out: asdnisadnias@gmail.com,userd%40gmail.com,aas@mail.com