当前位置: 技术问答>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()都可以用
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。