mangle function

String mangle(
  1. String s
)

Implementation

String mangle(String s) {
  return s.replaceAll(' ', '').toUpperCase();
}