Sets a regular expression as an additional pattern of a desired field type. This can be useful if the user has a specific pattern that he/she considers belonging to a certain field type.
Syntax
'Declaration
Public Sub SetFieldRegularExpression( _
ByVal As FieldType, _
ByVal As String _
)
'Usage
Dim instance As Reader
Dim field As FieldType
Dim regularExpression As String
instance.SetFieldRegularExpression(field, regularExpression)
public void SetFieldRegularExpression(
FieldType ,
string
)
public: void SetFieldRegularExpression(
FieldType ,
string*
)
public:
void SetFieldRegularExpression(
FieldType ,
String^
)
Parameters
- field
- Field type to associate the regular expression to
- regularExpression
- Regular expression string
Exceptions
See Also