Hallo Rolf, hallo Mathematicaner,
> Eine Möglichkeit wäre:
>
> ImportString[ExportString[
> ReadList[StringToStream["a;b;;c;;;d;5"], Word,
> RecordLists -> True, NullWords -> True,
> RecordSeparators -> {"\n", "\r"},
> WordSeparators -> {";"}] /. "" -> 0,"Table"],"Table"]
>
> womit sich
> {{"a", "b", 0, "c", 0, 0, "d", 5}}
> als Resultat ergibt.
In MM führen wirklich viele Wege nach Rom...
Hier meine Version:
gegeben:
>>>daten.txt>>>
a;b;;d;;;g
a;;c;;e;f;
<<<daten.txt<<<
In = Import["daten.txt", "CSV",
ConversionOptions -> {"FieldSeparator" -> ";"}]
Out = {{a, b, , d, , , g}, {a, , c, , e, f, }}
Grüße
Gunnar
P.S.: Meine Frage folgt gleich...