java-字符串查找

本文介绍了在Java中如何使用indexOf()和lastIndexOf()方法进行字符串查找,包括从特定位置开始的查找,以及如何利用charAt()方法根据索引获取字符。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用indexOf()查找:str.indexOf(要查找的字符串,int 查找的起始位置)

code:

public class first{
	public static void main(String[] args){
		String words="today,monday,sunday";
		System.out.println("源字符串是:"+words);
		System.out.println("使用indexOf(\"day\")结果:"+words.indexOf("day"));
		System.out.println("使用indexOf(\"day\",5)结果:"+words.indexOf("day",5));
		System.out.println("使用indexOf(\"o\")结果:"+words.indexOf("o"));
		System.out.println("使用indexOf(\"o\",6)结果:"+words.indexOf("o",6));
	}
}

使用lastindexOf()查找,从右往左查找,如果不指定起始索引,默认从末尾开始

public class first{
	public static void main(String[] args){
		String words="today,monday,sunday";
		System.out.println("源字符串是:"+words);
		System.out.println("使用lastIndexOf(\"day\")结果:"+words.lastIndexOf("day"));
		System.out.println("使用lastIndexOf(\"day\",5)结果:"+words.lastIndexOf("day",5));
		System.out.println("使用lastIndexOf(\"o\")结果:"+words.lastIndexOf("o"));
		System.out.println("使用lastIndexOf(\"o\",6)结果:"+words.lastIndexOf("o",6));
	}
}


根据索引查找charAt(索引值)直接查找字符

public class first{
	public static void main(String[] args){
		String words="today,monday,sunday";
		System.out.println(words.charAt(0));
		System.out.println(words.charAt(1));
		System.out.println(words.charAt(8));
	}
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值