Parse
No edit summary
No edit summary
Line 1: Line 1:
Most value types - for example, Integer and Decimal - have a function "parse" to convert a string into a value.
Most value types - for example, [[Integer]] and [[Decimal]] - have a function "parse" to convert a string into a value.


====== Example ======
====== Example ======
Use it as follows:
Use as follows:
  Decimal.parse('10')
  Decimal.parse('10')
  Integer.parse('5')
  Integer.parse('5')

Revision as of 06:23, 4 July 2023

This page was created by Lars.olofsson@mdriven.net on 2020-11-25. Last edited by Stephanie@mdriven.net on 2025-01-22.

Most value types - for example, Integer and Decimal - have a function "parse" to convert a string into a value.

Example

Use as follows:

Decimal.parse('10')
Integer.parse('5')
Error Handling

If the provided string isn't convertible to the type, the resulting value is NULL.

Decimal.parse('x').isNull

Returns true.

MDriven Chat

How would you like to chat today?

Setting up your conversation…

This may take a few moments