当前位置: 技术问答>java相关
在jsp或java中有没有查找子串在父串中位置的通用方法?
来源: 互联网 发布时间:2015-05-28
本文导语: 象这样的方法: public int locateString(String parentString, String subString) { ... } 我找不到,那位知道的请告诉我,thanks! | 有个String的方法 String par; String son; …… int i = par.indexOf(str...
象这样的方法:
public int locateString(String parentString, String subString) {
...
}
我找不到,那位知道的请告诉我,thanks!
public int locateString(String parentString, String subString) {
...
}
我找不到,那位知道的请告诉我,thanks!
|
有个String的方法
String par;
String son;
……
int i = par.indexOf(str)就是str在par中的位置,如果没有匹配的,则i值为-1
String par;
String son;
……
int i = par.indexOf(str)就是str在par中的位置,如果没有匹配的,则i值为-1
|
indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.
for example:
String s1="http://www.csdn.net/";
String s2="csdn";
int i=s1.indexOf(s2);
System.out.println("index:"+i);
Returns the index within this string of the first occurrence of the specified substring.
for example:
String s1="http://www.csdn.net/";
String s2="csdn";
int i=s1.indexOf(s2);
System.out.println("index:"+i);
|
String的indexOf()和lastIndexOf()都可以用