美文网首页
indexof用法

indexof用法

作者: 司马粮 | 来源:发表于2016-03-11 16:56 被阅读23次

    返回字符串所在的位置,从0开始

    public class Test {

    public static void main(String[] args) {

    String abc="nihao.xlxs";

    System.out.println(abc.indexOf("."));

    }

    }

    结果为5

    相关文章

      网友评论

          本文标题:indexof用法

          本文链接:https://www.haomeiwen.com/subject/uecxlttx.html