如何使用 Java 在字符串中查找唯一字符?
您可以通过以下方式查找给定字符串是否包含指定的字符:
使用 indexOf() 方法
您可以使用 String 类的 indexOf() 方法在字符串中搜索特定字母。此方法返回一个整数参数,该参数是字符串中单词的位置索引,或者如果给定字符在指定的字符串中不存在,则返回 -1。
因此,要查找特定字符是否存在于字符串中:
通过将指定的字符作为参数传递给字符串,调用字符串上的 indexOf() 方法。
如果此方法的返回值不是 -1,则表示字符串包含指定的字符。
示例
import java.util.Scanner; public class IndexOfExample { public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.println("Enter the required String: "); String str = sc.next(); System.out.println("Enter the required character: "); char ch = sc.next().toCharArray()[0]; //Invoking the index of method int i = str.indexOf(ch); if(i!=-1) { System.out.println("Sting contains the specified character"); } else { System.out.println("String doesn’t contain the specified character"); } } }
输出
Enter the required String: Tutorialspoint Enter the required character: t Sting contains the specified character
使用 toCharArray() 方法
String 类的 toCharArray() 方法将给定的字符串转换为字符数组并返回它。
因此,要查找特定字符是否存在于字符串中:
将其转换为字符数组。
将数组中的每个字符与所需的字符进行比较。
如果匹配,则字符串包含所需的字符。
示例
import java.util.Scanner; public class FindingCharacter { public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.println("Enter the required String: "); String str = sc.next(); System.out.println("Enter the required character: "); char ch = sc.next().toCharArray()[0]; //Converting the String to char array char charArray[] = str.toCharArray(); boolean flag = false; for(int i = 0; i < charArray.length; i++) { flag = true; } if(flag) { System.out.println("Sting contains the specified character"); } else { System.out.println("String doesnt conatin the specified character"); } } }
输出
Enter the required String: tutorialspoint Enter the required character: T Sting contains the specified character
广告