Java:文字列内の一致の位置を取得するメソッド?


138
String match = "hello";
String text = "0123456789hello0123456789";

int position = getPosition(match, text); // should be 10, is there such a method?

回答:


259

これを行う一連のメソッドは次のとおりです。

この文字列内で、指定された部分文字列の最初(または最後)の出現のインデックスを返します[ 指定されたインデックスから前方(または後方)に検索]。


String text = "0123hello9012hello8901hello7890";
String word = "hello";

System.out.println(text.indexOf(word)); // prints "4"
System.out.println(text.lastIndexOf(word)); // prints "22"

// find all occurrences forward
for (int i = -1; (i = text.indexOf(word, i + 1)) != -1; i++) {
    System.out.println(i);
} // prints "4", "13", "22"

// find all occurrences backward
for (int i = text.length(); (i = text.lastIndexOf(word, i - 1)) != -1; i++) {
    System.out.println(i);
} // prints "22", "13", "4"

2
lolz、whileループ内での割り当てを実現し、forループ内で割り当てを投稿する+1
hhh

4
@polygenelubricants-「すべてのオカレンスを見つける」例は賢いです。しかし、それをコードレビューしているのであれば、コードの保守性についての講義を受けるでしょう。
Stephen C

3
どのように書きますか?私は正直に尋ねています。私はこれまでにプロのコードレビューの経験がないためです。
polygenelubricants 2010

1
i ++の代わりにすべてのオカレンスを見つけるには、i + = word.length()と書くことができます。少し速くなるはずです。
に平和で休む

1つの文字と一致する場合、最初のループはすべての位置を見つけることができません。3番目のステートメントはi ++をカウントしてString text = "0011100"を試行するため、for loop 2番目のステートメントに+1 inは必要ありません。一致する単語の文字「1」は、2,3,4ではなく2,4を出力します
Strauteka

40

これは正規表現を使用して動作します。

String text = "I love you so much";
String wordToFind = "love";
Pattern word = Pattern.compile(wordToFind);
Matcher match = word.matcher(text);

while (match.find()) {
     System.out.println("Found love at index "+ match.start() +" - "+ (match.end()-1));
}

出力:

インデックス2〜5で「愛」が見つかりました

一般規則:

  • 正規表現は左から右に検索し、一度使用した一致文字は再利用できません。

19
これは
素晴らしく機能


8

単一のインデックスを見つける

他の人が言っtext.indexOf(match)たように、単一の一致を見つけるために使用します。

String text = "0123456789hello0123456789";
String match = "hello";
int position = text.indexOf(match); // position = 10

複数のインデックスを見つける

そのためのStephenCさんのコメント@コードの保守性や理解の私自身の難しさについて@polygenelubricants'答え、私は、テキスト文字列に一致するすべてのインデックスを取得するための別の方法を探していました。次のコード(この回答から変更されたもの)はそうします。

String text = "0123hello9012hello8901hello7890";
String match = "hello";

int index = text.indexOf(match);
int matchLength = match.length();
while (index >= 0) {  // indexOf returns -1 if no match found
    System.out.println(index);
    index = text.indexOf(match, index + matchLength);
}


2

内部のwhile-loopを割り当てるだけで、ファイル内のすべての一致を取得できます。

$ javac MatchTest.java 
$ java MatchTest 
1
16
31
46
$ cat MatchTest.java 
import java.util.*;
import java.io.*;

public class MatchTest {
    public static void main(String[] args){
        String match = "hello";
        String text = "hello0123456789hello0123456789hello1234567890hello3423243423232";
        int i =0;
        while((i=(text.indexOf(match,i)+1))>0)
            System.out.println(i);
    }
}

2
あなたがオフセットiする方法は機能します+1が、かなり遠回りです。ここで示したように、最初のレポートはhelloにありi == 1ます。常に0ベースのインデックスを使用すると、一貫性が大幅に向上します。
polygenelubricants 2010

1
...あなたの物を盗むでしょう:Pありがとう。
HHH

2
int match_position=text.indexOf(match);

1
あなたがしたことを説明してください
Fabio

1
@Fabio getPosition(match、text){int match_position = text.indexOf(match); match_positionを返す;}
サイード

1
import java.util.StringTokenizer;

public class Occourence {

  public static void main(String[] args) {
    String key=null,str ="my name noorus my name noorus";        
    int i=0,tot=0;

    StringTokenizer st=new StringTokenizer(str," ");
    while(st.hasMoreTokens())
    {   
        tot=tot+1;
        key = st.nextToken();
        while((i=(str.indexOf(key,i)+1))>0)
        {
            System.out.println("position of "+key+" "+"is "+(i-1));
        }
    }

    System.out.println("total words present in string "+tot);
  }
}

1
これが機能する理由と、内部ループのガードで何が起こっているのかを説明できますか?説明は初心者の読者に役立つかもしれません。
Paul Hicks 14

1
int indexOf(String str、int fromIndex):この文字列内で、指定されたインデックスから開始して、指定された部分文字列が最初に出現するインデックスを返します。発生しない場合は、-1が返されます。ここで、whileの内部ループは、トークン(ここでは「key」という名前の変数によって指定されます)のすべての発生を取得できます。
Khan

1

私はいくつかの大きなコードを持っていますが、うまく機能しています...

   class strDemo
   { 
       public static void main(String args[])
       {
       String s1=new String("The Ghost of The Arabean Sea");
           String s2=new String ("The");
           String s6=new String ("ehT");
           StringBuffer s3;
           StringBuffer s4=new StringBuffer(s1);
           StringBuffer s5=new StringBuffer(s2);
           char c1[]=new char[30];
           char c2[]=new char[5];
           char c3[]=new char[5];
           s1.getChars(0,28,c1,0);
           s2.getChars(0,3,c2,0);
           s6.getChars(0,3,c3,0); s3=s4.reverse();      
           int pf=0,pl=0;
           char c5[]=new char[30];
           s3.getChars(0,28,c5,0);
           for(int i=0;i<(s1.length()-s2.length());i++)
           {
               int j=0;
               if(pf<=1)
               {
                  while (c1[i+j]==c2[j] && j<=s2.length())
                  {           
                    j++;
                    System.out.println(s2.length()+" "+j);
                    if(j>=s2.length())
                    {
                       System.out.println("first match of(The) :->"+i);

                     }
                     pf=pf+1;         
                  }   
             }                
       }       
         for(int i=0;i<(s3.length()-s6.length()+1);i++)
        {
            int j=0;
            if(pl<=1)
            {
             while (c5[i+j]==c3[j] && j<=s6.length())
             {
                 j++;
                 System.out.println(s6.length()+" "+j);
                 if(j>=s6.length())
                 {
                         System.out.println((s3.length()-i-3));
                         pl=pl+1;

                 }   
                }                 
              }  
           }  
         }
       }

2
コードに説明/コメントを入れると、人々がコードを理解しやすくなります。特に長いコードです:)
himawan_r

1
//finding a particular word any where inthe string and printing its index and occurence  
class IndOc
{
    public static void main(String[] args) 
    {
        String s="this is hyderabad city and this is";
        System.out.println("the given string is ");
        System.out.println("----------"+s);
        char ch[]=s.toCharArray();
        System.out.println(" ----word is found at ");
        int j=0,noc=0;
        for(int i=0;i<ch.length;i++)
        {
            j=i;

            if(ch[i]=='i' && ch[j+1]=='s')
            {
                System.out.println(" index "+i);
            noc++;  
            }

        }
        System.out.println("----- no of occurences are "+noc);

    }
}

3
このコードは質問に答えることがありますが、問題を解決する方法や理由に関する追加のコンテキストを提供することで、回答の長期的な価値が向上します。
Peter Brittain、2015

1
    String match = "hello";
    String text = "0123456789hello0123456789hello";

    int j = 0;
    String indxOfmatch = "";

    for (int i = -1; i < text.length()+1; i++) {
        j =  text.indexOf("hello", i);
        if (i>=j && j > -1) {
            indxOfmatch += text.indexOf("hello", i)+" ";
        }
    }
    System.out.println(indxOfmatch);

0

検索文字列の「n」個の一致をスキャンする場合は、正規表現を使用することをお勧めします。彼らは急な学習曲線を持っていますが、複雑な検索に関しては何時間も節約できます。


2
提案:正規表現から位置を取得する例を含めてください。「正規表現を使用してみてください」はかなり基本的なコメントであり、OPの質問には答えません。
Brad Koch、

0

複数回出現し、string内にある文字の場合?? yesまたはno

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class SubStringtest {

    public static void main(String[] args)throws Exception {
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
     System.out.println("enter the string");
    String str=br.readLine();
    System.out.println("enter the character which you want");
    CharSequence ch=br.readLine();   
    boolean bool=str.contains(ch);
    System.out.println("the character found is " +bool);
    int position=str.indexOf(ch.toString());

    while(position>=0){
        System.out.println("the index no of character is " +position); 
        position=str.indexOf(ch.toString(),position+1);
    }


    }

}

0
public int NumberWordsInText(String FullText_, String WordToFind_, int[] positions_)
   {
    int iii1=0;
    int iii2=0;
    int iii3=0;
    while((iii1=(FullText_.indexOf(WordToFind_,iii1)+1))>0){iii2=iii2+1;}
    // iii2 is the number of the occurences
    if(iii2>0) {
        positions_ = new int[iii2];
        while ((iii1 = (FullText_.indexOf(WordToFind_, iii1) + 1)) > 0) {
            positions_[iii3] = iii1-1;
            iii3 = iii3 + 1;
            System.out.println("position=" + positions_[iii3 - 1]);
        }
    }
    return iii2;
}

問題が解決することを願っていますが、コードの説明を追加して、ユーザーが本当に望んでいることをユーザーが完全に理解できるようにしてください。
ジャイミルパテル
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.