Re: Importing data from the web
- To: mathgroup at smc.vnet.net
- Subject: [mg125171] Re: Importing data from the web
- From: Ulrich Arndt <ulrich.arndt at data2knowledge.de>
- Date: Sun, 26 Feb 2012 04:18:31 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201202250655.BAA01311@smc.vnet.net>
This should do.
data4 = {{"050318", "00111529"}, {"050401", "00113120"}};
Map[Import["http://www.swift.ac.uk/xrt_curves/" <> #, "Text"] &,
data4[[All, 2]]]
Ulrich
Am 25.02.2012 um 07:55 schrieb maria giovanna dainotti:
> data4 = {{"050318", "00111529"}, {"050401", "00113120"}}
> Do[
> ID = data4[[i, 2]];
> s = Import["http://www.swift.ac.uk/xrt_curves/<>ID<>", "Text"];
> Print[s],
> {i, 1, Length[data4]}]
- References:
- Importing data from the web
- From: maria giovanna dainotti <mariagiovannadainotti@yahoo.it>
- Importing data from the web