removeAllWhitespace static method

String removeAllWhitespace(
  1. String value
)

Implementation

static String removeAllWhitespace(String value) {
  return value.replaceAll(' ', '');
}