interface PC.IRegExpRule {
// Properties
${regExp}: string;
${subMatch}?: number;
${codePage}?: ${Encodings};
${ignoreCase}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
regExp: string;
// This property is not available in managed environment
// This property is not available in native environment
Regular expression.
subMatch?: number;
// This property is not available in managed environment
// This property is not available in native environment
Sub-expression to match, if omitted or set to 0, the entire match is used.
codePage?: ${Encodings};
// This property is not available in managed environment
// This property is not available in native environment
Code page to use for encoding the regular expression. If omitted or set to 0, uses the default code page.
ignoreCase?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
If true, the regular expression is case insensitive.