Miêu tả

Phương thức RegExp test trong JavaScript tìm kiếm chuỗi văn bản mà so khớp regexp. Nếu nó tìm thấy một so khớp, nó trả về true; nếu không thì, nó trả về false.

Cú pháp

Cú pháp của nó như sau:

RegExpObject.test( string );

Chi tiết về tham số

string − Chuỗi để tìm kiếm.

Trả về giá trị

Trả về văn bản so khớp nếu được tìm thấy, và false nếu không.

Ví dụ

Bạn thử chương trình ví dụ sau:

<html>
   
   <head>
      <title>JavaScript RegExp test Method</title>
   </head>
   
   <body>
      
      <script type="text/javascript">
         var str = "Javascript is an interesting scripting language";
         var re = new RegExp( "script", "g" );
         
         var result = re.test(str);
         document.write("Test 1 - returned value : " +  result); 
         
         re = new RegExp( "pushing", "g" );
         
         var result = re.test(str);
         document.write("<br />Test 2 - returned value : " +  result); 
      </script>
      
   </body>
</html>

Kết quả

Test 1 - returned value : true
Test 2 - returned value : false 

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