如果有多处匹配,并输出位置就用Matcher
import javautilregex;
public class FileTest{
public static void main(String[] args){
Matcher m=Patterncompile("/")matcher("my name is /,/said:please find me /");
int count=1;
while(mfind()){
Systemoutprintf("找到第%d个,起始:%d,结束:%d\n",count,mstart(),mend());
count++;
}
}
}
这个是反斜杠的\
import javautilregex;
public class FileTest{
public static void main(String[] args){
Matcher m=Patterncompile("\\\\")matcher("my name is \\,\\said:please find me \\");
int count=1;
while(mfind()){
Systemoutprintf("找到第%d个,起始:%d,结束:%d\n",count,mstart(),mend());
count++;
}
}
}
以上就是关于java中判断了字符串有了斜杠,怎么输出他的索引位置全部的内容,包括:java中判断了字符串有了斜杠,怎么输出他的索引位置、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)