get_pname
get_pname(s_arg) =>t_result
Description
Returns the print name of a symbol as a string.
This function is useful for converting symbols to strings. If you just want to print the name of a symbol, you do not need to use this function. This function is equivalent to symbolToString.
Arguments
Value Returned
Examples
get_pname( 'a )
=> "a"
get_pname(concat("Cell_" 123))
=> "Cell_123"
Related Topics
Return to top