Delphi regular expression syntax (1): case sensitive and Chinese

Source: Internet
Author: User
// Replace the common string var REG: tperlregex; begin REG: = tperlregex. Create (NiL); Reg. Subject: = 'I love Delphi, But Delphi doesn't love me! '; Reg. regEx: = 'delphi '; Reg. replacement: = '◆ '; Reg. replaceall; showmessage (Reg. subject); // return: I love Delphi, but ◆ don't love me! Freeandnil (REG); end;
  
   
 // Case insensitive var REG: tperlregex; begin REG: = tperlregex. Create (NiL); Reg. Subject: = 'I love Delphi, But Delphi doesn't love me! '; Reg. regEx: = 'delphi '; Reg. replacement: = '◆ '; Reg. options: = [precaseless]; // The parameter value is not distinguished by size. The default value is Reg. replaceall; showmessage (Reg. subject); // return: I love ◆, but ◆ don't love me! Freeandnil (REG); end;
  
   
 // Try replacing var REG: tperlregex; begin REG: = tperlregex. Create (NiL); Reg. Subject: = 'I love Delphi, But Delphi doesn't love me! '; Reg. regEx: = 'I'; Reg. replacement: = '◆ '; Reg. replaceall; showmessage (Reg. subject); // return: ◆ love Delphi, But Delphi does not love ◆! Freeandnil (REG); end;
  
   
 // If it is case-insensitive, var reg: tperlregex; begin REG: = tperlregex will not be distinguished. create (NiL); Reg. subject: = 'I love Delphi, But Delphi does not love me! '; Reg. regEx: = 'I'; Reg. replacement: = '◆ '; Reg. options: = [precaseless]; // It is also set to not differentiate the size of Reg. replaceall; showmessage (Reg. subject); // return: ◆ Delphi, ◆ Delphi ◆! Freeandnil (REG); end; // I tested different Chinese characters, except for disorder, which is irregular. If you operate Chinese characters, do not specify precaseless
  
   
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.