Using JSL to download Web JSON data, can be directly written into the matrix?
A table in all digital format can be downloaded using the following JSL.u = "http……";
txt = Load Text File( u );
loc1 = "[{";
offset = Contains( txt, loc1 );
If( offset,
txt = Substr( txt, offset, Length( txt ) )
);
loc2 = "}]";
offset = Contains( txt, loc2, -1 );
If( offset,
txt = Substr( txt, 1, offset + 1 )
);
d1 = JSON To Data Table( txt );//without going through a "d1" file.
How to write the...