フィルターのクリア

Replace part of string with variable

17 ビュー (過去 30 日間)
Steven Taggart
Steven Taggart 2017 年 12 月 3 日
コメント済み: Steven Taggart 2017 年 12 月 3 日
Hello,
I have a function that receives an input (double), and I would like to replace part of a string with this number. The string is used for controlling another program, I would like to be able to replace the '14' with whatever number is passed to the function. I have been trying sub and replace but having little luck. Any suggestions on how best to achieve this?
Cheers
Steven.
function wbinput (dia)
execwbcommand('designPoint1.SetParameterExpression(parameter1, "14")');
end

採用された回答

Stephen23
Stephen23 2017 年 12 月 3 日
編集済み: Stephen23 2017 年 12 月 3 日
str = sprintf('designPoint1.SetParameterExpression(parameter1, "%d")',dia);
execwbcommand(str)
  1 件のコメント
Steven Taggart
Steven Taggart 2017 年 12 月 3 日
That's brilliant.
Thanks Stephen!.

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

その他の回答 (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