Search found 1 match

by kameha
11 Jun 2010 01:43
Forum: DOS Batch Forum
Topic: String split with separaotr
Replies: 3
Views: 5315

String split with separaotr

hi there ! I've got the following script: SET BASES_NAMES=Base1,Base2 FOR /F "tokens=1 delims=," %%a IN ("%BASES_BTT%") DO ( ECHO Valeur: %%a ) I would like to produce the following output: Valeur: Base1 Valeur: Base2 But can only have the first line... why ? please help !