cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
hogi
Level XI

Decimal Separator

Is there a command to get the decimal separator defined for the current Jmp installation (on Windows)?

 

Via 

 

Preferences[1] << Get();

I just get the custom locale settings, which are empty if the setting is "default".

Custom Locale Settings(
Decimal Separator(),
Thousands Separator(),
Currency Decimal Separator(),
Currency Thousands Separator()
)

 

hogi_0-1686132246310.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Decimal Separator

Get Locale Setting might work

Names Default To Here(1);
Get Locale Setting("Decimal Separator");
-Jarmo

View solution in original post

4 REPLIES 4
jthi
Super User

Re: Decimal Separator

Get Locale Setting might work

Names Default To Here(1);
Get Locale Setting("Decimal Separator");
-Jarmo
hogi
Level XI

Re: Decimal Separator

Thanks, @jthi .
Great! 

 

How did you find it?

hogi_1-1686139640453.png

 

 

hogi
Level XI

Re: Decimal Separator

Ah, Scripting Index:

hogi_0-1686139474126.png

 

TroyJones
Level I

Re: Decimal Separator

Thank you, you saved my day.