Go to: Synopsis. Return value. MEL examples.
string nodeAttrJoin(string $node, string $attr )
string : A new string whose contents is equivalent to $node + "." + $attr (but taking care that there are no extra dots in the $attr name). |
Variable Name | Variable Type | Description |
---|---|---|
$attr | string | The attribute name. |
nodeAttrJoin( "a", "b" ); // ,Result:, a.b // size( stringRemovePrefix( "a", ".b" ) ); // ,Result:, a.b //