Go to: Synopsis. Return value. MEL examples.
string shortNameOf(string $object)
string : Short name of $object. |
// Create a sphere. // string $spheres[] = `polySphere -name "sphere1"`; string $sphere = $spheres[0]; shortNameOf($sphere); // Result: sphere1 //