91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java字符串查找的形式有哪些

小億
84
2024-03-29 16:31:04
欄目: 編程語言

在Java中字符串查找的形式有以下幾種:

  1. 使用indexOf()方法:該方法返回指定子字符串第一次出現的索引,如果未找到則返回-1。

例如:

String str = "Hello, world!";
int index = str.indexOf("world");
System.out.println(index); // 輸出6
  1. 使用lastIndexOf()方法:該方法返回指定子字符串最后一次出現的索引,如果未找到則返回-1。

例如:

String str = "Hello, world!";
int index = str.lastIndexOf("o");
System.out.println(index); // 輸出8
  1. 使用contains()方法:該方法用于判斷字符串中是否包含指定的子字符串,返回true或false。

例如:

String str = "Hello, world!";
boolean contains = str.contains("world");
System.out.println(contains); // 輸出true
  1. 使用matches()方法:該方法用于判斷字符串是否匹配指定的正則表達式。

例如:

String str = "Hello, world!";
boolean isMatch = str.matches("Hello.*");
System.out.println(isMatch); // 輸出true
  1. 使用startsWith()和endsWith()方法:這兩個方法分別用于判斷字符串是否以指定的前綴開始或以指定的后綴結束,返回true或false。

例如:

String str = "Hello, world!";
boolean startsWith = str.startsWith("Hello");
boolean endsWith = str.endsWith("world!");
System.out.println(startsWith); // 輸出true
System.out.println(endsWith); // 輸出true

這些方法可以根據具體的需求選擇合適的方式進行字符串查找。

0
潍坊市| 博客| 永丰县| 大理市| 宜君县| 满洲里市| 衡水市| 沁源县| 深水埗区| 开远市| 奉贤区| 宝鸡市| 深圳市| 绥滨县| 黄平县| 卓尼县| 溧水县| 天长市| 昌都县| 新竹市| 贡嘎县| 台江县| 开远市| 焦作市| 原阳县| 辽宁省| 准格尔旗| 定兴县| 阿克| 祁东县| 昌邑市| 湘阴县| 深州市| 赤水市| 新沂市| 府谷县| 广宁县| 紫云| 南漳县| 五常市| 三穗县|