Locale.GroupingSeparator

From Xojo Documentation

Read-Only Property (As String )
StringValue = aLocale.GroupingSeparator

New in 2019r2

Supported for all project types and targets.

The locale's separator for grouping a number. In "en-US", this is the 'comma' placed between every three integer digits.

Sample Code

Get the locale's grouping separator:

Var USEnglishlLocale As New Locale("en-US")

Var grouping As String
grouping = locale.GroupingSeparator