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