String match = "hello";
String text = "0123456789hello0123456789";
int position = getPosition(match, text); // should be 10, is there such a method?
La famille de méthodes utilisée est la suivante:
Renvoie l'index dans cette chaîne de la première (ou dernière) occurrence de la sous-chaîne spécifiée [recherche en avant (ou arrière) à partir de l'index spécifié].
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"
Cela fonctionne en utilisant regex.
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));
}
Sortie:
Trouvé 'amour' aux index 2 - 5
Règle générale :
text.indexOf(match);
Voir le String javadoc
Comme d'autres l'ont déjà dit, utilisez text.indexOf(match)
pour trouver une seule correspondance.
String text = "0123456789hello0123456789";
String match = "hello";
int position = text.indexOf(match); // position = 10
En raison du commentaire de @ StephenC sur la maintenabilité du code et de ma propre difficulté à comprendre la réponse de @polygenelubricants , je souhaitais trouver un autre moyen d'obtenir tous les index d'une correspondance dans une chaîne de texte. Le code suivant (qui est modifié depuis cette réponse ) le fait:
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);
}
Vous pouvez obtenir toutes les correspondances dans un fichier en assignant simplement à l'intérieur de while-loop, cool:
$ 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);
}
}
int match_position=text.indexOf(match);
Utilisez string.indexOf pour obtenir l'index de départ.
//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);
}
}
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);
}
}
J'ai un gros code mais je travaille bien ...
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;
}
}
}
}
}
}
Si vous recherchez des correspondances entre les mots-clés de la chaîne de recherche, je vous recommande d'utiliser expressions régulières . Leur courbe d'apprentissage est raide, mais elles vous feront gagner des heures. quand il s'agit de recherches complexes.
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);
pour l'occurrence multiple et le caractère trouvé dans la chaîne ?? oui ou non
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);
}
}
}