getGroupingSeparator method
Return the separator character used to separate groups of digits on the integer side of the decimal character.
Implementation
String getGroupingSeparator() {
final String jscode1 = 'new LocaleInfo("$locale").getGroupingSeparator()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result;
}