Miêu tả

Thuộc tính RegExp ignoreCase trong JavaScript là thuộc tính 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 case-insensitive, ví dụ: có hay không nó được tạo với thuộc tính "i".

Cú pháp

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

RegExpObject.ignoreCase

Trả về giá trị

Trả về "TRUE" nếu lượng hóa (modifier) "i" được thiết lập, nếu không thì trả về "FALSE".

Ví dụ

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

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

Nó sẽ cho kết quả sau:

Test1 - ignoreCase property is not set
Test2 - ignoreCase 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