trimSpaceAndLCase method

String trimSpaceAndLCase()

Implementation

String trimSpaceAndLCase() {
  String _ = this.split(" ").join("").replaceAll(RegExp("[-=()*&^%#@!`~/:,.]"), "").toLowerCase();
  return _;
}