With a text file with entries formatted as (output from C++):
f[38.67] = -2.5387862698183892298317350539374412777263289550697e-05;
⋮
Is there a way to read this into Mathematica? It seems to be getting confused with the e, thinking it is just a symbol e.


ewith*^. That seems like the easiest approach if you have this file already in place. – Oleksandr R. Nov 22 '12 at 14:59Getthe file via a pipe, preprocessing it withsedor similar. – Oleksandr R. Nov 22 '12 at 15:30<<"!sed 's/e/*^/gI' < file.m"? Obviously you should be careful when doing this if you have other occurrences of "e" in the file. – Oleksandr R. Nov 22 '12 at 15:47