フィルターのクリア

insert elements of array in a string one by one

1 回表示 (過去 30 日間)
Nabhdeep Bansal
Nabhdeep Bansal 2015 年 4 月 26 日
コメント済み: Stephen23 2015 年 4 月 27 日
i have a string containing url 'http://www.upsc.gov.in/cgi-bin1/ENGG/Marks/engg_wq_marks_response.pl?roll_no= 098909 ---'
the digits in the bold are to be changed at every iteration of the for loop and the new element of an array are to be inserted. But MATLAB does not consider a variable inside a string.
How can i solve this problem?
Thanks in advance.
  1 件のコメント
Stephen23
Stephen23 2015 年 4 月 27 日
This is easy using sprintf, and the documentation contains plenty of examples.

サインインしてコメントする。

採用された回答

Jan
Jan 2015 年 4 月 26 日
編集済み: Jan 2015 年 4 月 26 日
Depending on the inputs something like this might help:
for k = 98900:98999
S = sprintf(['http://www.upsc.gov.in/cgi-bin1/ENGG/Marks', ...
'/engg_wq_marks_response.pl?roll_no= %06d ---'], k)
end
Or:
C = {'098909', '098910', '098911'};
for k = 1:3
S = sprintf(['http://www.upsc.gov.in/cgi-bin1/ENGG/Marks', ...
'/engg_wq_marks_response.pl?roll_no= %s ---'], C{k})
end
If you provide the definition for the changing part of the string, a matching answer is more likely.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by