I want to find out the type of a variable's name which is a string. There probably must be a function like this, but I cannot find it.
I expect to work it like this:
str input;
anytype result;
;
input = "SysSetup";
result = function(input); // returns "class", probably string or enum
input = "AgreementReference";
result = function(input); // returns "table"
input = "ABC";
result = function(input); // returns "base enum"
etc.
*This post is locked for comments
I have the same question (0)