Miêu tả

Phương thức này trả về một chuỗi phụ của một đối tượng String.

Cú pháp

Cú pháp để sử dụng substring() như sau:

string.substring(indexA, [indexB])

Chi tiết về tham số

  • indexA − Một số integer giữa 0 và một số nhỏ hơn độ dài chuỗi.

  • indexB − (tùy ý) Một số integer giữa 0 và độ dài chuỗi.

Trả về giá trị

Phương thức substring trả về một chuỗi phụ mới dựa trên các tham số đã cho.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>JavaScript String substring() Method</title>
   </head>
   
   <body>
   
      <script type="text/javascript">
         var str = "Apples are round, and apples are juicy.";
         
         document.write("(1,2): "    + str.substring(1,2));
         document.write("<br />(0,10): "   + str.substring(0, 10));
         document.write("<br />(5): "      + str.substring(5));
      </script>
      
   </body>
</html>

Kết quả

(1,2): p
(0,10): Apples are
(5): s are round, and apples are juicy. 

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday