java在字符串中查找小数点_如何使用Java在字符串中查找唯一字符?

您可以通过以下方式查找给定的String是否包含指定的字符-

使用indexOf()方法

您可以使用String类的indexOf()方法在字符串中搜索特定字母。此方法返回一个整数参数,该参数是字符串中单词的位置索引;如果给定字符不存在于指定字符串中,则返回-1。

因此,要查找字符串中是否存在特定字符-indexOf()通过将指定的字符作为参数来调用String上的方法。

如果此方法的返回值不为-1,则它表示包含指定字符的String。

示例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];

//调用方法索引

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:

Nhooo

Enter the required character:

t

Sting contains the specified character

使用toCharArray()方法

String类的toCharArray()方法将给定的String转换为字符数组并返回它。

因此,要查找字符串中是否存在特定字符-将其转换为字符数组。

将数组中的每个字符与所需的字符进行比较。

如果为/ match,则字符串包含必需的字符。

示例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];

//将String转换为char数组

char charArray[] = str.toCharArray();

boolean flag = false;

for(int i = 0; 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:

nhooo

Enter the required character:

T

Sting contains the specified character

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值