Bonjour ,
Dans mon programme je converti des lignes qui ce trouve dans un fichier.txt
j' ai ceci
"0009","Il fait beau, il fait bon.pdf","F:\partition\a ranger I","","","",""
"0010","Il y a trop de gens qui taiment.pdf","F:\partition\a ranger I","","","","",""
mais quand je fait le split
Open App.Path & "\liste_partition.txt" For Input As #89
Line Input #89, a
Close #89
test_nombre_champ() = Split(a, ",")
If UBound(test_nombre_champ()) < 8 Then
Mon probleme est qu'il prend aussi le ,
a coté de il fait beau,
y a t-il une solution ?
Merci