Class JSRegExp

    • Field Detail

      • prototype

        public JSRegExp prototype
        property prototype
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        RegExp
      • constructor

        protected JSFunction constructor
        property constructor
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Function
      • source

        protected JSString source
        property source
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        String
      • global

        protected JSBoolean global
        property global
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Boolean
      • ignoreCase

        protected JSBoolean ignoreCase
        property ignoreCase
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Boolean
      • multiline

        protected JSBoolean multiline
        property multiline
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Boolean
      • lastIndex

        protected JSNumber lastIndex
        property lastIndex
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
        See Also:
        Number
    • Constructor Detail

      • JSRegExp

        public JSRegExp​(JSString pattern,
                        JSString attributes)
        Object RegExp(pattern, attributes)
        Parameters:
        pattern - a string that specifies the pattern of the regular expression.
        attributes - an optional string containing and of the "g", "i" an "m" attributes that specify global, case-insensitive, and multiline matches respectively.
        Since:
        Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.