我正在嘗試使用sprintf創建ulr。要打開各種網站,我使用sprintf更改了部分網址。現在下面的代碼寫入3次url替換部分url的任意信息????有什麼建議嗎?非常感謝!使用sprintf創建url創建錯誤的url
current_stock = 'AAPL';
current_url = sprintf('http://www.finviz.com/quote.ashx?t=%d&ty=c&ta=0&p=d',current_stock)
web(current_url, '-browser')
%d應該是appl的holer。結果是:
http://www.finviz.com/quote.ashx?t=65&ty=c&ta=0&p=dhttp://www.finviz.com/quote.ashx?t=65&ty=c&ta=0&p=dhttp://www.finviz.com/quote.ashx?t=80&ty=c&ta=0&p=dhttp://www.finviz.com/quote.ashx?t=76&ty=c&ta=0&p=d
你可以發佈你期待的結果嗎? – fpe