Bonjour a tous
Je cherche votre aide s'il vous plais![]()
j'ai un tableau tab1 qui contient ensemble des mots, et un autre tableau tab2 qui contient des phrases
je veux tester l’existence des mots du tab1 dans tab2 et extraire l'indice de son apparition
mon code est comme suit et qui me affiche comme résultat que des zéros:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 try { int[] tab_indice=new int[50]; int h=0; for(int j=0;j<tab1.length;j++){ for(int i=0; i <tab2.length; i++){ while(tab2[i].contains(st[j])>=0){ tab_indice[h]=i; h++; } System.out.println(tab_indice[h]); } } } catch (Exception e) { e.printStackTrace(); } } catch (final ParserConfigurationException a) { a.printStackTrace(); } catch (final SAXException b) { b.printStackTrace(); }
Partager