String | Text string. |
Function | STR_PRINT("My variable is " // DV1) |
Result | writes My variable is 45 into aview.log (DV1 is equal to 45) |
Function | STR_PRINT("My variable is " // eval(STR_MATCH ("f*d", "fed"))) |
Result | writes My variable is 1 into aview.log because a match occurred |
Function | STR_PRINT("My variable is " // eval(STR_MATCH ("f*d", "fet"))) |
Result | writes My variable is 0 into aview.log because a match did not occur |