Salut,

voila je lis un fichier :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
    Dim Flux As New IO.StreamReader(Path, False)
    While Flux.Peek <> -1 
      Dim r1 As String = Flux.ReadLine() 
      Dim r2 As String = Flux.ReadToEnd()
 
      TextBox1.Text = r1
 
    End While
    Flux.Close()
dans mon fichier il y a des ligne commencant par & et je voudrai passer a la ligne suivante en l'ignorant.

une idee ?

merci