Options - Regular Expressions
 
These options control the advanced behaviour of the .NET based regular expression engine in TextCrawler.
 
 ECMAScript Compatibility Mode option 
VBScript/JavaScript ECMA-262 compatibility mode can be enabled.  Off by default. 
 | 
 | 
 
 Culture Invariant option 
Ignore local cultural differences in language constructs. (For instance differences in upper and lower case versions of letters). 
 | 
 | 
 
 Indented RegEx (Linebreaks and Tabs are ignored) option 
This opens allows regular expressions to be constructed and saved over multiple lines. This improves readability. 
 | 
 | 
 
 Substitute /r /n and /t with line breaks 
 and tabs in Replace expression option 
Allows the usage of /r /n and /t in the replace text (regular expression mode). 
  
/r - carriage return 
/n - line feed 
/t - tab 
  
  
 | 
 |