<div>  <br></div><blockquote class="protonmail_quote" type="cite"><div style="font-family: Verdana;font-size: 12.0px;"><div>I don't understand how to deal with the value of variables : I have 3 variables defining mesh size (a= 1, b=2, c=10). Mesh is OK and I want to export this mesh with the values of variables in the file name. I tried :<br></div><div>Save StrCat("model", a, "_", b, "_", c, ".inp"); returns a syntax error.<br></div><div>How can I extract the value of each variable to create a string ?<br></div></div></blockquote><div><br></div><div>Try Sprintf rather than StrCat.<br></div><div><br></div><div>a = 1; b = 2; c = 10;<br></div><div>Printf(Sprintf("model%g_%g_%g.inp", a, b, c));<br></div><div><br></div><div>See:<br></div><div><br></div><div>   <a href="http://gmsh.info/doc/texinfo/gmsh.html#Character-expressions">http://gmsh.info/doc/texinfo/gmsh.html#Character-expressions</a><br></div><div><br></div><div>Note the use of %g despite the variables appearing to have integral values.<br></div><div><br></div>