找到 9301 篇文章 关于面向对象编程

Java 程序设置显示子字符串的范围

karthikeya Boyini
更新于 2024年8月19日 18:33:51

2K+ 阅读量

在这篇文章中,我们将学习如何使用 substring() 方法从 Java 中的字符串中提取特定范围的字符。substring(int beginIndex, int endIndex) 方法获取从 beginIndex 到 endIndex 前一个字符的字符串的一部分。问题陈述给定一个字符串,从指定的索引范围内提取一个子字符串。输入字符串:pqrstuvw 输出子字符串:stu 设置显示子字符串范围的步骤以下是设置显示子字符串范围的步骤 - 声明一个字符串 str。用...初始化字符串 str。 阅读更多

Java 程序搜索一组字符的最后一个索引

Samual Sam
更新于 2020年6月26日 16:15:37

147 阅读量

使用 lastIndexOf() 方法搜索一组字符的最后一个索引。假设以下为我们的字符串。String myStr = "pqrstuvwxyzpqrst";在字符串中搜索子字符串“pqrs”以获取其在字符串中出现的最后一个索引。我们从索引 3 开始搜索。int begnIndex = 3; strLastIndex = myStr.indexOf("pqrs", begnIndex);以下是一个示例,其中我们正在搜索子字符串“pqrs”的最后一个索引示例实时演示public class Demo { public static void main(String[] args) { String myStr = "pqrstuvwxyzpqrst"; int strLastIndex = 0; System.out.println("字符串: "+myStr); strLastIndex = myStr.lastIndexOf("pqrs"); System.out.println("子字符串 pqrs 在字符串中的最后一个索引: "+strLastIndex); } }输出字符串: pqrstuvwxyzpqrst 子字符串 pqrs 在字符串中的最后一个索引: 11 阅读更多

Java 程序从指定索引搜索子字符串

karthikeya Boyini
更新于 2020年6月26日 15:08:13

338 阅读量

使用 indexOf() 方法从给定位置搜索子字符串。假设以下为我们的字符串。String myStr = " pqrstuvwxyzpqrst";在字符串中搜索子字符串“pqrs”。我们从 3 开始搜索索引。int begnIndex = 3; strLastIndex = myStr.indexOf("pqrs", begnIndex);示例实时演示public class Demo { public static void main(String[] args) { String myStr = "pqrstuvwxyzpqrst"; int strLastIndex = 0; int begnIndex = 3; System.out.println("字符串: "+myStr); strLastIndex = myStr.indexOf("pqrs", begnIndex); System.out.println("从索引 "+begnIndex+" 开始,子字符串 pqrs 在字符串中的索引 = "+strLastIndex); } }输出字符串: pqrstuvwxyzpqrst 从索引 3 开始,子字符串 pqrs 在字符串中的索引 = 11 阅读更多

在 Java 中从给定位置搜索字符

Samual Sam
更新于 2020年6月26日 15:10:01

112 阅读量

使用 indexOf() 方法从给定位置搜索字符。假设以下为我们的字符串。String myStr = "Amit Diwan";这里,我们在字符串中搜索字符“i”。我们从 4 开始搜索索引。int begnIndex = 4; System.out.println("字符串: "+myStr); strLastIndex = myStr.indexOf('i', begnIndex);以下是完整示例。示例实时演示public class Demo { public static void main(String[] args) { String myStr = "Amit Diwan"; int strLastIndex = 0; int begnIndex = 4; System.out.println("字符串: "+myStr); strLastIndex = myStr.indexOf('i', begnIndex); System.out.println("从索引 "+begnIndex+" 开始,字符 a 在字符串中的索引 ="+strLastIndex); } }输出字符串: Amit Diwan 从索引 4 开始,字符 a 在字符串中的索引 =6 阅读更多

在 Java 中查找字符串中字符的最后一次出现

karthikeya Boyini
更新于 2020年6月26日 15:12:51

2K+ 阅读量

使用 lastIndexOf() 方法在 Java 中查找字符串中字符的最后一次出现。假设以下为我们的字符串。String myStr = "Amit Diwan";在上面的字符串中,我们将查找字符“i”的最后一次出现myStr.lastIndexOf('i');以下是完整示例。示例实时演示public class Demo { public static void main(String[] args) { String myStr = "Amit Diwan"; int strLastIndex = 0; System.out.println("字符串: "+myStr); strLastIndex = myStr.lastIndexOf('i'); System.out.println("字符 a 在字符串中的最后一个索引: "+strLastIndex); } }输出字符串: Amit Diwan 字符 a 在字符串中的最后一个索引: 6 阅读更多

在 Java 中搜索字符串中字符的索引

Samual Sam
更新于 2020年6月26日 15:28:38

1K+ 阅读量

使用 indexOf() 方法搜索字符串中字符的索引。假设以下为我们的字符串。String myStr = "amit";现在,让我们在上面的字符串中找到字符“t”的索引。strIndex = myStr.indexOf('t');以下是最终示例。示例实时演示public class Demo { public static void main(String[] args) { String myStr = "amit"; int strIndex = 0; System.out.println("字符串: "+myStr); // 查找字符 t 的索引 strIndex = myStr.indexOf('t'); System.out.println("字符 m 位于索引: "+strIndex); } }输出字符串: amit 字符 m 位于索引: 3

在 Java 中使用逗号 (,) 分割字符串

karthikeya Boyini
更新于 2023年9月13日 15:45:12

33K+ 阅读量

假设以下为我们的字符串。String str = " This is demo text, and demo line!";要在 Java 中使用逗号分割字符串,请使用 split() 方法。str.split("[,]", 0);以下是完整示例。示例实时演示public class Demo { public static void main(String[] args) { String str = "This is demo text, and demo line!"; String[] res = str.split("[,]", 0); for(String myStr: res) { System.out.println(myStr); } } }输出This is demo text and demo line!

在 Java 中使用点 (.) 分割字符串

Samual Sam
更新于 2020年6月26日 15:30:03

12K+ 阅读量

假设以下为我们的字符串。String str = "This is demo text.This is sample text!";要在 Java 中使用点分割字符串,请使用 split() 方法。str.split("[.]", 0);以下是完整示例。示例实时演示public class Demo { public static void main(String[] args) { String str = "This is demo text.This is sample text!"; String[] res = str.split("[.]", 0); for(String myStr: res) { System.out.println(myStr); } } }输出This is demo text This is sample text!

在 Java 中分词字符串

karthikeya Boyini
更新于 2020年6月26日 14:58:41

293 阅读量

我们有以下字符串 -String str = "This is demo text, and demo line!";要对字符串进行分词,让我们在每个句点 (.) 和逗号 (,) 后将其分割String str = "This is demo text, and demo line!";以下是完整示例。示例实时演示public class Demo { public static void main(String[] args) { String str = "This is demo text, and demo line!"; String[] res = str.split("[, .]", 0); for(String myStr: res) { System.out.println(myStr); } } }输出This is demo text and demo line!

Java 中 equals() 与 equalsIgnoreCase() 的区别

Samual Sam
更新于 2020年6月26日 14:56:37

4K+ 阅读量

在 Java 中使用 equals() 检查两个字符串是否相等。在 Java 中使用 equalsIgnoreCase() 检查两个字符串是否相等,忽略大小写。假设以下为我们的两个字符串 -String one = "qwerty"; String two = "Qwerty";两者相等,但大小写不同。由于该方法忽略大小写,因此这两个字符串在使用 equalsIgnoreCase() 方法时将被视为相等。在这里,我们正在检查相同的内容 -if(one.equalsIgnoreCase(two)) { System.out.println("字符串 one 等于 two(忽略大小写),即 one==two"); }else{ System.out.println("字符串 one 不等于字符串 two(忽略大小写),即 one!=two"); }但是,在... 阅读更多

广告