首页 > 代码库 > String常用方法
String常用方法
public class first{public static void main(String args[]){ String asd = "helloworld"; String asf = "hello world love"; System.out.println(asd.contains("hello"));//判断“hello”是否存在 System.out.println(asd.indexOf("d",5));//从第5开始查找 d 的位置 返回他的索引找不到返回-1 System.out.println(asd.lastIndexOf("h",1)); System.out.println(asd.startsWith("ll",1));//从索引1开始查找 判断是否以ll开头 System.out.println(asd.replaceAll("o","-"));//把o替换成- System.out.println(asd.substring(1,5)); String it [] = asf.split("\\ ");//拆分操作 for (int x=0;x<it.length ;x++ ) { System.out.println(it[x]); } }}
String常用方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。