Hi
I need to write a procedure that would identify what would specific expression return, either string, number,date,boolean...
Example:
1+1 = number
'test' = string
12.02.2004 = date
FALSE = boolean
I think I can make it work for such simple expressions, but what about something like this:
IF(A=2,'number = 2','number <> 2')
returns string (this is simple expression, like in Excel)
I get expressions as strings.
Does anybody have any suggestions how can I parse the expression to see what the result is?
Thanx
I need to write a procedure that would identify what would specific expression return, either string, number,date,boolean...
Example:
1+1 = number
'test' = string
12.02.2004 = date
FALSE = boolean
I think I can make it work for such simple expressions, but what about something like this:
IF(A=2,'number = 2','number <> 2')
returns string (this is simple expression, like in Excel)
I get expressions as strings.
Does anybody have any suggestions how can I parse the expression to see what the result is?
Thanx