RAD function: parse

Parses a string into an operator.

Function

parse

Format

parse(string,type)

Factors

  • An operator can be an expression, such as type<11, or a statement, such as type=11.
  • When enabled on forms, the parse property automatically parses the data entered.

Examples

$x=parse("1+1",1)

Evaluate($x) returns 2.

$x=parse("$x=1",11)

Evaluate($x) causes the value of $x to be set to 1.