I can offer you 2 works:
:
Google script . http://www.bloomberg.com/quote/TWSE:IND. , , script URL- .
, , , "," ".". .
function twn(){
var feed = UrlFetchApp.fetch("http://www.bloomberg.com/quote/TWSE:IND");
var taux = feed.getContentText().match(/meta itemprop\="price" content\="[0-9,\.]*"/);
taux = taux[0].slice(31,taux[0].length-1);
taux = taux.replace(",","");
taux = taux.replace(".",",");
Logger.log("taux: "+taux);
return(taux);
}
:
:
=mid(REGEXEXTRACT(concatenate(Importdata("http://www.bloomberg.com/quote/TWSE:IND"));"itemprop=""price"" content=""[0-9,\.]*");27;10)