Réponse acceptée !
int position = txt.IndexOf('\"',0);
if(position != -1)
{
int position2;
while(true)
{
position2 = txt.IndexOf('\"',position+1);
if(position2 == -1)break;
// texte entre guillement se situe entre position et position2
position = txt.IndexOf('\"',position2+1);
if(position == -1)break;
}
}
voila, code non testé

, je pense qu'il doit marhé, sinon, voila l'idée

YaoYao !!
1 + 1 = 10