如何判断一个字符串中存在另外一个字符串 java
1个回答
展开全部
1)public int indexOf(int ch/String str) //用于查找当前字符串中字符或子串,返回字符或子串在当前字符串中从左边起首次出现的位置,若没有出现则返回-1。
2)public int indexOf(int ch/String str, int fromIndex) //该方法与第一种方法类似,区别在于该方法从fromIndex位置向后查找。
3)public int lastIndexOf(int ch/String str) //该方法与第一种类似,区别在于该方法从字符串的末尾位置向前查找。
4)public int lastIndexOf(int ch/String str, int fromIndex) //该方法与第二种方法类似,区别在于该方法从fromIndex位置向前查找。
5)contains(String str) //判断参数str是否被包含在字符串中,并返回一个布尔类型的值。
2)public int indexOf(int ch/String str, int fromIndex) //该方法与第一种方法类似,区别在于该方法从fromIndex位置向后查找。
3)public int lastIndexOf(int ch/String str) //该方法与第一种类似,区别在于该方法从字符串的末尾位置向前查找。
4)public int lastIndexOf(int ch/String str, int fromIndex) //该方法与第二种方法类似,区别在于该方法从fromIndex位置向前查找。
5)contains(String str) //判断参数str是否被包含在字符串中,并返回一个布尔类型的值。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询