Integer.FromText
From Xojo Documentation
Shared Method
Converts a text form of a decimal number to an Integer. Specify a locale to convert thousands separator.
Notes
If no locale is specified, then Locale.Raw is used.
Exceptions
- Xojo.Core.BadDataException when theText contains anything other than an integer (including when it is empty). Use Parse if you need to parse text that might contain non-numeric data or might be empty.
Sample Code
Convert a number in text to an integer:
This code converts a number using the US locale:
Var locale As New Xojo.Core.Locale("en-US")
Var value As Integer
value = Integer.FromText("1,234", locale) // value = 1234
Var value As Integer
value = Integer.FromText("1,234", locale) // value = 1234
You can also use an exception to catch invalid data: