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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中判断了字符串有了斜杠,怎么输出他的索引位置相关的知识,希望对你有一定的参考价值。

参考技术A 如果有多处匹配,并输出位置就用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++;


参考技术B 比如有个字符串对象:
String a = "abcdef/ghijk";
想查/的索引使用String类提供的一方法:a.indexOf("/");这样可查出/的索引位置追问

怎么判断某个位置有没有某个字符,
比如
第一个位置有没有双引号?

追答

用你需要判断的字符内容,使用equals方法,具体如下:
假如想判断stringyes个字符串第n个位置是不是Y,那么这样:if((stringyes.index(n)).equals("Y"))如果返回值是真,那么这个位置上就是Y,如果不是那么则不。

追问

嗯,但是如果有行是一个回车,就是空行,就报错了,虽然我用了这样:
while ((tempString = reader.readLine()) != null)
还说越界。。

追答

这样的话你也可以先把你需要操作的字符串通过trim()这个方法把不必要的空行空格去掉,当然也得根据的代码的业务需求...如果还有问题可以继续

追问

还有一个问题:、

如果一行有两处都匹配,怎么把这两处都取出来,打印一下,就是怎么判断这两处都匹配并输出?

追答

如果你要实现这样的功能的话那么就要用到循环了:
假如:
String str = "helloword";
for(int i=0;i=0)
System.out.println(str.indexOf(index));
System.out.println(index);
else
continue;


注释我就不写了,如果还有问题再说

追问

嗯,这位哥,你太强了!
但是你这句 System.out.println(str.indexOf(index));
输出的是这个位置索引还是这个位置的值呢?

嗯,但是这句话是输出位置还是输出该位置的索引?
System.out.println(str.indexOf(index));

本回答被提问者采纳
参考技术C public class Test
public static void main(String[] args)

String a = "asda\\df";
System.out.println(a.indexOf("\\"));




运行可获得\索引位置
参考技术D 是正斜杠,还是反斜杠啊,正的话转义一下:System.out.println(string.indexOf("\\"));
反得直接引号里写反斜杠就OK。
第5个回答  2011-11-01 int index=str.indexOf("/");str为字符串

java编程怎么完成任意输入一个正整数,反序输出每一位?

java编程怎么完成任意输入一个正整数,反序输出每一位?

1、首先输入一正整数

2、可以将这个正整数转化成字符串

3、然后利用字符串的几种方法来将个"正整数"反序输出就行了

public class demo 
    public static void main(String[] args) 
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        String s = n.toString();
        System.out.pringln(s.reverse()); // 这是反向输出方法
        // 还有很多方法可以,比如取出字符串的每一位,然后用循环倒序输出之类的,可以自己自行探索哦!
    
参考技术A public static void main(String[] args)
Scanner input = new Scanner(System.in);
System.out.print("输入任意正整数:");
StringBuffer sb = new StringBuffer(input.next());
sb.reverse();
System.out.print("逆序为:");
System.out.println(sb);
本回答被提问者和网友采纳
参考技术B #include <stdio.h>
int main()

int n;
scanf("%d", &n);
do

printf("%d", n % 10);
while(n /= 10);
printf("\n");
return 0;

以上是关于java中判断了字符串有了斜杠,怎么输出他的索引位置的主要内容,如果未能解决你的问题,请参考以下文章

跪求:Java怎样判断字符串中最后一个英文单词的位置英文的索引位置

java求助:写一个程序 输入一个七位数 判断是不是前三位是字母 后四位是数字

java中怎么判断字符串里有没有指定的字符存在?

如何去掉Json字符串中反斜杠

php 字符串不想输出变量怎么办? 反斜杠!

java怎么判断是不是是小数