Packagemx.validators
Classpublic class RegExpValidationResult
InheritanceRegExpValidationResult Inheritance ValidationResult Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The RegExpValidator class dispatches the valid and invalid events. For an invalid event, the event object is an instance of the ValidationResultEvent class, and the ValidationResultEvent.results property contains an Array of ValidationResult objects.

However, for a valid event, the ValidationResultEvent.results property contains an Array of RegExpValidationResult objects. The RegExpValidationResult class is a child class of the ValidationResult class, and contains additional properties used with regular expressions.

See also

mx.events.ValidationResultEvent


Public Properties
 PropertyDefined By
 InheritederrorCode : String
The validation error code if the value of the isError property is true.
ValidationResult
 InheritederrorMessage : String
The validation error message if the value of the isError property is true.
ValidationResult
 InheritedisError : Boolean
Contains true if the field generated a validation failure.
ValidationResult
  matchedIndex : int
An integer that contains the starting index in the input String of the match.
RegExpValidationResult
  matchedString : String
A String that contains the substring of the input String that matches the regular expression.
RegExpValidationResult
  matchedSubstrings : Array
An Array of Strings that contains parenthesized substring matches, if any.
RegExpValidationResult
 InheritedsubField : String
The name of the subfield that the result is associated with.
ValidationResult
Public Methods
 MethodDefined By
  
RegExpValidationResult(isError:Boolean, subField:String, errorCode:String, errorMessage:String, matchedString:String, matchedIndex:int = 0, matchedSubstrings:Array = null)
Constructor
RegExpValidationResult
Property Detail
matchedIndexproperty
public var matchedIndex:int

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

An integer that contains the starting index in the input String of the match.

matchedStringproperty 
public var matchedString:String

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

A String that contains the substring of the input String that matches the regular expression.

matchedSubstringsproperty 
public var matchedSubstrings:Array

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

An Array of Strings that contains parenthesized substring matches, if any. If no substring matches are found, this Array is of length 0. Use matchedSubStrings[0] to access the first substring match.

Constructor Detail
RegExpValidationResult()Constructor
public function RegExpValidationResult(isError:Boolean, subField:String, errorCode:String, errorMessage:String, matchedString:String, matchedIndex:int = 0, matchedSubstrings:Array = null)

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor

Parameters
isError:Boolean — Pass true if there was a validation error.
 
subField:String — Name of the subfield of the validated Object.
 
errorCode:String — Validation error code.
 
errorMessage:String — Validation error message.
 
matchedString:String — Matching substring.
 
matchedIndex:int (default = 0) — Index of the matching String.
 
matchedSubstrings:Array (default = null) — Array of substring matches.