How to change the split on the ToText(int) use grouping function

Hello,

I’m currently programming a game with a score system. The score is in the top right corner and I use an int variable which I let run through the ToText (int) function to display it in my HUD as a text.

The problem is that the score can get pretty high so I want to split it up every 3 digits with commas (eg. 10,000,000).
The ToText function got this covered with a boolean: “Use Grouping”, which you can check to split the number up like I want it BUT the grouping indicator is culture sensitive so in Europe it would be 10.000.000, because it uses dots instead of commas.
Is there a way to split the number always with commas and not make this culture sensitive?

Thank you in advance :slight_smile: