找到 4330 篇文章 适用于 Java 8
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("String: "+myStr); strLastIndex = myStr.indexOf("pqrs", begnIndex); System.out.println("The index of substring pqrs in the string beginning from index "+begnIndex+" = "+strLastIndex); } }输出String: pqrstuvwxyzpqrst The index of substring pqrs ... 阅读更多
112 次查看
使用 indexOf() 方法从给定位置搜索字符。假设以下为我们的字符串。String myStr = "Amit Diwan";这里,我们在字符串中搜索字符“i”。我们从索引 4 开始搜索。int begnIndex = 4; System.out.println("String: "+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("String: "+myStr); strLastIndex = myStr.indexOf('i', begnIndex); System.out.println("The index of character a in the string beginning from index "+begnIndex+" ="+strLastIndex); ... 阅读更多
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("String: "+myStr); strLastIndex = myStr.lastIndexOf('i'); System.out.println("The last index of character a in the string: "+strLastIndex); } }输出String: Amit Diwan The last index of character a in the string: 6阅读更多
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("String: "+myStr); // 查找字符 t 的索引 strIndex = myStr.indexOf('t'); System.out.println("Character m found at index: "+strIndex); } }输出String: amit Character m found at index: 3
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!
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!
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!
4K+ 次查看
在 Java 中使用 equals() 检查两个字符串是否相等。在 Java 中使用 equalsIgnoreCase() 检查两个字符串是否相等,忽略大小写。假设以下为我们的两个字符串 -String one = "qwerty"; String two = "Qwerty";两者相等,但大小写不同。由于该方法忽略大小写,因此使用 equalsIgnoreCase() 方法,这两个字符串将被视为相等。这里,我们正在检查相同 -if(one.equalsIgnoreCase(two)) { System.out.println("String one is equal to two (ignoring the case) i.e. one==two"); }else{ System.out.println("String one is not equal to String two (ignoring the case) i.e. one!=two"); }然而,在 ... 阅读更多
3K+ 次查看
在 Java 中使用 System.getProperty() 方法获取操作系统名称。其语法如下 -String getProperty(String key)在上面,key 是系统属性的名称。由于我们想要 OS 名称,因此我们将添加 key 作为 -os.name示例 实时演示public class Demo { public static void main(String[] args) { System.out.print("Operating System: "); System.out.println(System.getProperty("os.name")); } }输出Operating System: Linux