operator - method

String operator -(
  1. String src
)

Implementation

String operator -(String src) {
  return replaceAll(src, '');
}