Miêu tả

Thuộc tính RegExp multiline trong JavaScript là thuộc tính logic chỉ đọc (read-only) của đối tượng RegExp. Nó xác định có hay không một Regular Expression đặc trưng thực hiện so khớp multiline, ví dụ: có hay không nó được tạo với thuộc tính "m".

Cú pháp

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

RegExpObject.multiline

Trả về giá trị

Trả về "TRUE" nếu "m" modifier được thiết lập, nếu không nó trả về "FALSE".

Ví dụ

Bạn thử ví dụ sau:

<html>
   
   <head>
      <title>JavaScript RegExp multiline Property</title>
   </head>
   
   <body>
      
      <script type="text/javascript">
         var re = new RegExp( "string" );
         
         if ( re.multiline ){
            document.write("Test1-multiline property is set"); 
         }
         else
         {
            document.write("Test1-multiline property is not set"); 
         }
         re = new RegExp( "string", "m" );
         
         if ( re.multiline ){
            document.write("<br/>Test2-multiline property is set"); 
         }
         else
         {
            document.write("<br/>Test2-multiline property is not set"); 
         }
      </script>
      
   </body>
</html>

Kết quả

Test1 - multiline property is not set
Test2 - multiline property is set

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