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

Pattern.RegExp Interface

This interface describes a regular expression pattern.

Declaration

interface Pattern.RegExp {
    // Properties
    ${regExp}: string;
    ${subMatch}?: number;
}
public interface Pattern.RegExp
{
    // Properties
}
struct Pattern.RegExp : IDispatch
{
    // Properties
};

Pattern.RegExp Properties

regExp

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

String pattern adhering to regular expression syntax.

subMatch

subMatch?: number;
// This property is not available in managed environment
// This property is not available in native environment

Optional number of sub expression to use. Omit or set to zero to specify the full match.