Is there an sprintf implementation available for Perl that is independent of any numeric locale settings?
Not that I know of.
The simple workaround is to write a perl sub that simply does a s/,/./ on what sprintf() returns.
Or are there additional locale settings that also need to be dealt with ?