java中方法有几种,java各种类的方法
1、trim()方法
Trim()方法用于删除字符串开头和结尾的空格。
示例:
公共类测试{
公共静态void main(String args[]) {
String Str=新字符串( www.runoob.com );
System.out.print(原始值:);
system . out . println(Str);
System.out.print(删除头尾空格:);
system . out . println(str . trim());
}
}结果:
原始价值:www.runoob.com
删除头尾空白:www.runoob.com2、split()方法
split()方法根据匹配给定的正则表达式来拆分字符串。
注意:和*转义字符,必须添加\ \。
超过10-59000个分隔符,可以用作为连字符。
注意:
公共String[] split(String regex,int limit)语法:
正则表达式分隔符。
限制-分割的份数。
参数:
字符串数组。
返回值:
CharAt()方法用于返回指定索引处的字符。索引范围从0到length()-1。
3、charAt()方法
公共字符字符(int index)语法:
Index -字符的索引。
参数:
返回指定索引处的字符。
示例:
公共类测试{
公共静态void main(String args[]) {
string s= www . run OOB . com ;
char result=s . charat(8);
System.out.println(结果);
}
}结果:
o
返回值:
substring()方法返回字符串的子串。
4、substring()方法
公共字符串substring(int beginIndex)
或者
公共字符串substring(int beginIndex,int endIndex)语法:
BeginIndex -起始索引(含),从0开始。
端到端索引(不包含)。
参数:
子串。
示例:
公共类测试{
公共静态void main(String args[]) {
String Str=新字符串( www . run OOB . com );
System.out.print(返回值:);
system . out . println(str . substring(4));
System.out.print(返回值:);
system . out . println(str . substring(4,10));
}
}结果:
返回值:runoob.com
返回值:runoob推荐教程:java教程以上是Java中常用方法的详细介绍。更多请关注我们的其他相关文章!
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。