java中查找一个字符串是否包含一个字符,或者一段字符串java.lang.String
indexOf方法
package com.java.lang;
public class StringX {
/**
* @param args
*/
public static void main(String[] args) {
java.lang.String a = "my name is yuexiaosheng,my blog is java-er.com";
int isPos = a.indexOf("is");
int islastPos = a.lastIndexOf("is");
System.out.println("first 'is' postion is " + isPos);
System.out.println("last 'is' postion is " + islastPos);
int haswen = a.indexOf("?");
System.out.println(haswen);
if(haswen==-1){
System.out.println("字符串中没有问号");
}
}
}
int indexOf(int ch)
返回指定字符在此字符串中第一次出现处的索引。
int indexOf(int ch, int fromIndex)
从指定的索引开始搜索,返回在此字符串中第一次出现指定字符处的索引。
int indexOf(String str)
返回第一次出现的指定子字符串在此字符串中的索引。
int indexOf(String str, int fromIndex)
从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。
String intern()
返回字符串对象的规范化表示形式。
int lastIndexOf(int ch)
返回最后一次出现的指定字符在此字符串中的索引。
int lastIndexOf(int ch, int fromIndex)
从指定的索引处开始进行后向搜索,返回最后一次出现的指定字符在此字符串中的索引。
int lastIndexOf(String str)
返回在此字符串中最右边出现的指定子字符串的索引。
int lastIndexOf(String str, int fromIndex)
从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。
int length()
返回此字符串的长度。