java中判断了字符串有了斜杠,怎么输出他的索引位置

java中判断了字符串有了斜杠,怎么输出他的索引位置,第1张

如果有多处匹配,并输出位置就用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中判断了字符串有了斜杠,怎么输出他的索引位置、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9765809.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存