以下實例使用了String 類別的indexOf() 方法在字串中尋找子字串出現的位置,如過存在返回字串出現的位置(第一位為0),如果不存在回傳-1:
//SearchStringEmp.java 文件public class SearchStringEmp{ public static void main(String[] args) { String strOrig = "Hello readers"; int intIndex = strOrig.indexOf("Hello"); if(intIndex == - 1){ System.out.println("Hello not found"); }else{ System.out.println("Found Hello at index " + intIndex); } }}
以上程式碼實例輸出結果為:
Found Hello at index 0
以上是Java 實例- 字串搜尋的內容,更多相關內容請關注PHP中文網(www. php.cn)!