Google-translate:
I would go a dataSet (below "dat") so that every time a chain of unwanted character is found, it is replaced.
Currently, I get stuck on the first line ... (see the MessageBox) (Sorry if my code is clean ^ ^ ')
Can you tell me what is wrong please?
Good morning,
i would like to replace some strings in a data set i am blocked (Sorry for my my code )
can you tell me what is not working thanks for support !
foreach (DataRow dtR in dat.Tables[0].Rows)
{
foreach (DataColumn dtC in dat.Tables[0].Columns)
{
MessageBox.Show(dtC.ToString());
dtC.ToString().Replace("<br><img src=\"http://actualites.gestion.fr/good.jpg\">", "");
dtC.ToString().Replace("<br><img src=\"http://actualites.gestion.fr/great.jpg\">", "");
dtC.ToString().Replace("<br><img src=\"http://actualites.gestion.fr/no-good.jpg\">", "");
dtC.ToString().Replace("<br><img src=\"http://actualites.gestion.fr/bof.jpg\">", "");
}
}