一、字符串的创建

    1. 使用单引号或者双引号
      1. String str = ‘字符串’
      2. String str =”字符串”
    2. 使用三个单引号或者三个双引号创建多行文本

      1. String str = ‘’’ 多行文本

        多行文本
        ‘’’

    3. 使用r创建原始raw字符串(使用了r,则字符串中的转义字符就不会生效)

      1. String str = ‘字符串 \n 字符串’ // 字符串

    字符串
    b. String str = r’字符串 \n 字符串’ // 字符串 \n 字符串
    4. 运算符

      • 在字符串后加字符串
      • 复制字符串次数
    1. ==
    2. [] 取字符串对应下标的字符
    1. 擦值表达式:${}
      6. 常用属性

      1. length //判断长度
      2. isEmpty // 判断字符串是否为空
      3. isNotEmpty
    2. 常用方法

      • contains(),subSting()
      • startsWith(), endsWith()
      • indexOf(), lastIndexOf()
      • toLowerCase(), toUpperCase()
      • trim(), trimLeft(), trimRight()
      • split(), replaceXXX()