jsp substring()函數實現字串截取方法

來源:互聯網
上載者:User

str=str.substring(int beginIndex);截取掉str從首字母起長度為beginIndex的字串,將剩餘字串賦值給str;

str=str.substring(int beginIndex,int endIndex);截取str中從beginIndex開始至endIndex結束時的字串,並將其賦值給str;

執行個體

 

public class Utils {
  public static String diff(String str1, String str2) {
    int index = str1.lastIndexOf(str2);
    if (index > -1) {
      return str1.substring(str2.length());
    }
    return str1;
  }
}

執行個體二

public class TestSubstring {

 public static void main(String[] args) {
  String str1 = "fghjkl";
  String str2 = str1.substring(1);//從第1號位置開始截取字串,截到最後,把截取後的返回,賦值給str2
  System.out.println("str1 == " + str1);
  System.out.println("str2 == " + str2);
 }
}

執行個體三

public static String substring(String str, int start, int end) {
      if (str == null) {
          return null;
      }

      // handle negatives
      if (end < 0) {
          end = str.length() + end; // remember end is negative
      }
      if (start < 0) {
          start = str.length() + start; // remember start is negative
      }

      // check length next
      if (end > str.length()) {
          end = str.length();
      }

      // if start is greater than end, return ""
      if (start > end) {
          return "";
      }

      if (start < 0) {
          start = 0;
      }
      if (end < 0) {
          end = 0;
      }

      return str.substring(start, end);
  }

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.