This interface describes a regular expression pattern.
interface Pattern.RegExp {
// Properties
${regExp}: string;
${subMatch}?: number;
}
public interface Pattern.RegExp
{
// Properties
}
struct Pattern.RegExp : IDispatch
{
// Properties
};
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?: 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.