美文网首页
第五章字符串学习

第五章字符串学习

作者: 黄敬理 | 来源:发表于2018-11-14 20:29 被阅读0次

    字符串学习
    1.定义
    概念:
    注意
    2.常用方法
    str.charAt(index); 获取指定位置的字符


    image.png

    a.indexOf(substr); 获取字符串索引位置


    image.png
    str.startsWith(prefix);判断字符串是否以指定前缀开始
    image.png
    str.endsWith(suffix);判断字符串是否以指定后缀结束
    image.png
    str.toCharArray();获取字符串数组
    image.png
    str.contains(string) 判断字符串是否存在
    image.png

    str.substring(beginIndex);
    str.substrinig(beginIndex,endIndex); 截取字符串


    image.png image.png image.png image.png image.png image.png

    相关文章

      网友评论

          本文标题:第五章字符串学习

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