Hello
I have this ASCII file that I need to extract and organize data from it. I need to locate the text between "$begin" and "$end", split it and lay it out in a table
$begin pec
simple('conductivity', 1.0E30)
ModTime=1028307964
$end pec
.
.
.
$begin nickel
simple('conductivity', 14500000)
simple('permeability', 600)
simple('thermal_conductivity',90)
simple('mass_density',8900)
simple('specific_heat',444)
simple('youngs_modulus',210000000000)
simple('poissons_ratio',0.35)
simple('thermal_expansion_coeffcient',1.3e-005)
ModTime=1132068240
$end nickel
I would like to create a table that looks like
name conductivity permeability thermal_conductivity
pec 1.00E+30 … ….
nickel 14500000 600 90
any suggestions?
Thanks
Bookmarks