manuelbl / SwissQRBill

Java library for Swiss QR bill payment slips (aka QR-Rechnung)
https://www.codecrete.net/qrbill
MIT License
156 stars 37 forks source link

Improved Strings helper class #83

Closed andlinger closed 1 year ago

manuelbl commented 1 year ago

When I wrote this function, I probably went overboard with optimizations (avoiding allocations). But using regular expressions for the simple string replacement is wasteful and unneeded.

I'm willing to accept your pull request if it uses the non-regex replace function.

andlinger commented 1 year ago

Switched to non-regex replace method.