extension StringExt on String {
  operator -(String another) {
    return this.replaceAll(another,"");
  }
}

main() {
  print("Hello" - "l");
}