compact function

String compact(
  1. String input
)

input with its cosmetic grouping stripped, for a digits-only charset where upper-casing would do nothing.

Implementation

String compact(String input) => input.replaceAll(cosmeticSeparators, '');