stripEquals method

String stripEquals(
  1. String s
)

Implementation

String stripEquals(String s) {
  return s.replaceAll('=', '');
}