java中判断了字符串有了斜杠,怎么输出他的索引位置
展开全部
如果有多处匹配,并输出位置就用Matcher.
import java.util.regex.*;
public class FileTest{
public static void main(String[] args){
Matcher m=Pattern.compile("/").matcher("my name is /,/said:please find me /");
int count=1;
while(m.find()){
System.out.printf("找到第%d个,起始:%d,结束:%d\n",count,m.start(),m.end());
count++;
}
}
}
这个是反斜杠的\
import java.util.regex.*;
public class FileTest{
public static void main(String[] args){
Matcher m=Pattern.compile("\\\\").matcher("my name is \\,\\said:please find me \\");
int count=1;
while(m.find()){
System.out.printf("找到第%d个,起始:%d,结束:%d\n",count,m.start(),m.end());
count++;
}
}
}
import java.util.regex.*;
public class FileTest{
public static void main(String[] args){
Matcher m=Pattern.compile("/").matcher("my name is /,/said:please find me /");
int count=1;
while(m.find()){
System.out.printf("找到第%d个,起始:%d,结束:%d\n",count,m.start(),m.end());
count++;
}
}
}
这个是反斜杠的\
import java.util.regex.*;
public class FileTest{
public static void main(String[] args){
Matcher m=Pattern.compile("\\\\").matcher("my name is \\,\\said:please find me \\");
int count=1;
while(m.find()){
System.out.printf("找到第%d个,起始:%d,结束:%d\n",count,m.start(),m.end());
count++;
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
比如有个字符串对象:
String a = "abcdef/ghijk";
想查/的索引使用String类提供的一方法:a.indexOf("/");这样可查出/的索引位置
String a = "abcdef/ghijk";
想查/的索引使用String类提供的一方法:a.indexOf("/");这样可查出/的索引位置
更多追问追答
追问
怎么判断某个位置有没有某个字符,
比如
第一个位置有没有双引号?
追答
用你需要判断的字符内容,使用equals方法,具体如下:
假如想判断stringyes个字符串第n个位置是不是Y,那么这样:if((stringyes.index(n)).equals("Y"))如果返回值是真,那么这个位置上就是Y,如果不是那么则不。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test{
public static void main(String[] args){
String a = "asda\\df";
System.out.println(a.indexOf("\\"));
}
}
运行可获得\索引位置
public static void main(String[] args){
String a = "asda\\df";
System.out.println(a.indexOf("\\"));
}
}
运行可获得\索引位置
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是正斜杠,还是反斜杠啊,正的话转义一下:System.out.println(string.indexOf("\\"));
反得直接引号里写反斜杠就OK。
反得直接引号里写反斜杠就OK。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int index=str.indexOf("/");str为字符串
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |