Méthode indexof :
Remarque : La méthode indexOf renvoie une valeur entière indiquant la position de départ de la sous-chaîne dans l'objet String. Si la sous-chaîne n'est pas trouvée, -1 est renvoyé.
public class IndexOf{ public static void main(String[] args){ String s="李宏#王海#林巧#陆寻#唐梅"; String q="#"; //需要查找的字符串 String err="*"; //不存在的字符串 int i=0; for(int j=0;j<s.length();j++){ //循环所有字符串 String get=s.substring(j,j+1); //打印所有字符串 if(get.equals(q)){ //判断#字是否出现 i++; //#字出现次数 } } System.out.println("总共有"+s.length()+"个字符串"); System.out.println("#字共出现了"+i+"次"); //#字符总共出现的次数 System.out.println("第一个#字出现在字符串的"+s.indexOf(q)+"个位置"); if(s.indexOf(err)==-1){ //返回-1则表示字符不存在字符串中 System.out.println("*字在字符串中不存在"); } } }
Résultats d'exploitation :
Il y a 14 chaînes au total
Le caractère # apparaît 4 fois au total
Le premier caractère # apparaît à 2 positions de la chaîne
*Le caractère n'existe pas dans la chaîne
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!