Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

PC.IRegExpRule Interface

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

PC.IRegExpRule Properties

regExp

regExp: string;
// This property is not available in managed environment
// This property is not available in native environment

Regular expression.

subMatch

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

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

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.