找到 4330 篇文章 相关 Java 8

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("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 ... 阅读更多

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

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

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);   ... 阅读更多

在 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("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阅读更多

在 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("String: "+myStr);        // 查找字符 t 的索引        strIndex = myStr.indexOf('t');        System.out.println("Character m found at index: "+strIndex);     } }输出String: amit Character m found at index: 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("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"); }但是,在 ... 阅读更多

Java 中 equals() 与 == 的区别

Deepti S
更新于 2023年8月29日 14:42:50

518 次查看

在 Java 中,有两种方法可以确定两个对象是否相等:.equals() 方法和 == 运算符。.equals() 函数比较两个对象的内容。== 运算符比较两个对象的引用。当使用 new 运算符创建对象时,它会在堆中分配指定的内存位置。例如,两个对象具有相同的数据。即使两个对象存储在内存的不同部分,.equals() 方法也会返回 true。如果两个对象存储在内存的完全相同的位置,则 == 运算符将返回 true。之间的差异 ... 阅读更多

在 Java 中显示操作系统名称

karthikeya Boyini
更新于 2020年6月26日 15:01:44

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

广告