Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The INT operation extracts the integer component from Value. It is equivalent to the INT() method in OpenInsight.

Example

 
Code Block
// Extract the integer component of 364.87451 
Result = SRP_Math("INT", "364.87451") 
!! Result = 364.0 !! 
 

...

Code Block
// Extract the integer component of PI 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("INT", Val) 
!! Result = 3.0 !!

 

...