获取子字符串索引位置--indexOf方法与lastIndexOf方法

本文通过几个Java示例程序介绍了如何使用indexOf和lastIndexOf方法来查找字符串中特定字符首次和最后一次出现的位置。示例包括了基本用法以及如何指定起始搜索位置。

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

package com;

public class GetStringIndex {

	public static void main(String[] args) {
		String str ="明月几时有,把酒问青天";
		System.out.println(str);
		int charIndex =str.indexOf("酒");
		System.out.println("字符‘酒’首次出现的索引为:"+charIndex);

	}

}

--------------------------------------------------------------------------------------

package com;

public class GetStringIndex {

	public static void main(String[] args) {
		String str ="we are the world";
		System.out.println(str);
		int charIndex =str.indexOf("e");
		System.out.println("字符‘e’首次出现的索引为:"+charIndex);
		int charIndex2 =str.indexOf("e",4);
		System.out.println("字符‘e’在索引4之后第一次出现的位置:"+charIndex2);

		System.out.println();
		String str2 = "let it go!let it go!";
		System.out.println(str2);
		int index = str2.lastIndexOf("t");
		System.out.println("字符t最后一次出现的位置:"+index);
		int index2 =str2.lastIndexOf("t",14);
		System.out.println("从索引14的位置往前查第一个t出现的位置:"+index2);
		

	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ThinkPet

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值