字符串的查与替换最简单的就是contains()⽅法
String str = "helloworld";
System.out.ains("world")); // true jdk 1.5 后才有的
System.out.println(str.indexOf("world")); // 5 w 开始的索引 jdk 1.5 前采⽤indexOf() ⽅法System.out.println(str.indexOf("java")); // -1 没有查到
if(str.indexOf("world")!=-1)
{
System.out.println("可以查到指定的内容!");
}
建议使⽤contains()⽅法
字符串的替换
String str = "helloworld";
字符串截取替换System.out.placeAll("l","_")); // he__oworld
System.out.placeFirst("l","_")); // he_loworld
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论