Java程序设置显示子字符串的范围
在本文中,我们将学习如何使用Java中的substring()方法从字符串中提取特定范围的字符。substring(int beginIndex, int endIndex)方法 获取字符串的一部分,从beginIndex开始,到endIndex之前结束。
问题陈述
给定一个字符串,从指定的索引范围内提取子字符串。
输入
String: pqrstuvw
输出
Substring: stu
设置显示子字符串范围的步骤
以下是设置显示子字符串范围的步骤:
- 声明一个字符串str。
- 用值“pqrstuvw”初始化字符串str。
- 使用substring(int beginIndex, int endIndex)方法从索引中提取字符。
- 打印输出
Java程序设置显示子字符串的范围
以下是一个完整的示例,其中我们设置了从字符串中显示子字符串的范围:
public class Demo { public static void main(String[] args) { String str = "pqrstuvw"; System.out.println("String: "+str); // range from 3 to 6 String strRange = str.substring(3, 6); System.out.println("Substring: "+strRange); } }
输出
String: pqrstuvw Substring: stu
代码解释
在代码中,我们将使用substring()方法设置字符串的子字符串范围。假设我们的字符串如下:
String str = "pqrstuvw";
str.substring(3, 6)从字符串“pqrstuvw”中选择位置3到5的字符。
String strRange = str.substring(3, 6);
这将得到子字符串stu,并将其保存在strRange中。然后,main()方法打印原始字符串和提取的子字符串。
广告