- import java.util.* ;
- public class jva210{
- public static void main(String args[]){
-
- System.out.println("請輸入字串");
- Scanner s = new Scanner(System.in);
- String str = s.next();
- System.out.println("請輸入要搜尋的字元或字串");
- String str2 = s.next();
- int loc = -1;
- boolean find = false;
- boolean afind = false ;
- do{
- if( (loc = str.indexOf(str2,loc+1)) > -1 ){
- if(!find){
- System.out.println("第幾個位置找到了");
- find = true;
- }
- afind = true ;
- System.out.println(loc+1);
- }
- }while(loc != -1);
-
- if(!afind) System.out.println("字元不在字串中");
- }
- }
複製代碼 |