codecamp

Groovy minus()方法

删除字符串的值部分。

句法

String minus(Object value)

参数

Value - 需要删除的字符串对象

返回值

新字符串减去对象值的值。

例子

下面是一个使用这个方法的例子 -

class Example { 
   static void main(String[] args) { 
      String a = "Hello World";
		
      println(a.minus("World")); 
      println(a.minus("Hello"));
   }
}

当我们运行上面的程序,我们将得到以下结果 -

Hello  
World
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定