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