joutvhu / fixed-width-parser

Fixed Width Parser: parse fixed width string to object and export object to fixed width string
MIT License
15 stars 3 forks source link

Locale on @FixedFormat #33

Open graiffr opened 2 years ago

graiffr commented 2 years ago

Could be useful set the locale during parsing, so the code might be as follow:

FixedParser .parser() .setLocale("fr_FR") .export(myObj);

TIA