to extarct data points

suppose u have a file which consist of many data points separated by asterisk
Question is to extract third part in each line .
0.0002*0.003*-0.93939*0.0202*0.322*0.3332*0.22220.22020
0.003*0.3333*0.33322*-0.2220*0.3030*0.2222*0.3331
-0.3030
0.0393*0.3039*-0.03038*0.033*0.4033*0.30384*0.4048

So output shud be like that
-0.93939
0.33322
-0.03038

after 60+ posts, you should be able to attempt this yourself.
what have you got?

awk 'NR%1?$0=$1:$0=" "$1"\n"' ORS= FS="*" filename

attempted
thanks for bullying me

awk 'NR%1?$0=$1:$0=" "$3"\n"' ORS= FS="*" filename

Just another way.

awk -F"*" '{print $3}' filename

sorry if you think that way. You have started many before and gotten many tips about shell scripting such as this one. Also this question is very easily solved, so its not unreasonable to ask you to demonstrate what you have learnt so far.

Just for the record, you can also use cut

# cut -d"*" -f3 file