java中怎么判断一个字符串中包含某个字符或字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么判断一个字符串中包含某个字符或字符串相关的知识,希望对你有一定的参考价值。
参考技术A方法如下:
一、contains方法
1:描述
java.lang.String.contains() 方法返回true,当且仅当此字符串包含指定的char值序列
2:声明
public boolean contains(CharSequence s)3:返回值
此方法返回true,如果此字符串包含,否则返回false。
4:实例
public static void main(String[] args)String str = "abc";
boolean status = str.contains("a");
if(status)
System.out.println("包含");
else
System.out.println("不包含");
二、indexOf方法
1:描述
java.lang.String.indexOf() 的用途是在一个字符串中寻找一个字的位置,同时也可以判断一个字符串中是否包含某个字符。
2:声明
int indexOf(int ch,int fromIndex)3:返回值
indexOf的返回值为int
4:实例
public static void main(String[] args)String str1 = "abcdefg";
int result1 = str1.indexOf("a");
if(result1 != -1)
System.out.println("字符串str中包含子串“a”"+result1);
else
System.out.println("字符串str中不包含子串“a”"+result1);
Java判断一个字符串是否是包含某个字符
Java判断一个字符串是否是包含某个字符
在java中我们经常要判断一个字符串是否被包含在另外一个字符集中,那么如何用代码实现这个功能需求呢?
- contains方法
该方法返回true,如果此字符串包含,否则返回false。
public class containString
{
public static void main(String[] args)
{
String str1 = "sdfsfsfa2we";
String str2 = "we";
System.out.println(str1.contains(str2));
}
}
- indexof方法
indexOf的返回值为int
如果找到,则返回找到字符起始字符位置的index索引(从0开始)。
如果未找到,则返回-1
public class containString
{
public static void main(String[] args)
{
String str1 = "sdfsfsfa2we";
String str2 = "we";
String str3 = "me";
System.out.println(str1.indexOf(str2));
System.out.println(str1.indexOf(str3));
}
}
以上是关于java中怎么判断一个字符串中包含某个字符或字符串的主要内容,如果未能解决你的问题,请参考以下文章