Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Maya MELスクリプトで整数を文字列に出力するにはどうすればよいですか?
+MayaEmbeddedLanguageで文字列オブジェクトと整数オブジェクトを連結するために使用できることがわかりました。
+
例えば:
int $i ; string $s ; for( $i = 0; $i < 5; $i++ ) { $s = "ooh" + $i ; print $s ; }
formatコマンドもあります