Borrar filtros
Borrar filtros

Replace part of string with variable

17 visualizaciones (últimos 30 días)
Steven Taggart
Steven Taggart el 3 de Dic. de 2017
Comentada: Steven Taggart el 3 de Dic. de 2017
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

Respuesta aceptada

Stephen23
Stephen23 el 3 de Dic. de 2017
Editada: Stephen23 el 3 de Dic. de 2017
str = sprintf('designPoint1.SetParameterExpression(parameter1, "%d")',dia);
execwbcommand(str)

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by