ARABIC
returns the numerical value of a Roman numeral.
Function category: Text​
ARABIC(arg1)
Arguments | Description |
| String representing a Roman numeral. |
Let's say we receive the following product information.
{"data": {"vehicle": {"stereo": {"make": "Bose","model": "Platinum Sound","version": "XIV"}}}}
# Transform the value of "version" into numeric valueARABIC(data.vehicle.stereo.version)​# Returns 14
To perform the opposite operation, transforming a given numerical value into Roman numerals, use ROMAN.