• 2022-06-19
    System.String类的()方法不能删除字符串中的空格。
    A: Replace()
    B: Trim()
    C: Remove()
    D: EndsWith()
  • D

    内容

    • 0

      以下字符串的常用方法中,用于删除字符串两端空白字符的方法是( )。 A: trim( ) B: slice( ) C: concat( ) D: replace( )

    • 1

      从一个字符串中取出指定位置的字符,采用String类中的()方法。 A: charAt() B: endsWith() C: A、charAt()B、endsWith()C、indexOf()D、substring() D: indexOf()

    • 2

      从一个字符串中取出指定位置的字符,采用String类中的()方法。 A: charAt() B: endsWith() C: indexOf() D: substring()

    • 3

      下面()是String类提供的去掉字符串前后空格的方法。 A: trim() B: indexOf() C: equals() D: subString()

    • 4

      方法 replace (String srt1, String srt2)将当前字符串中所有 srt1 子串换成 srt2子串。