System.JSON.Types.TJsonRegEx
Delphi
TJsonRegEx = record
C++
struct DECLSPEC_DRECORD TJsonRegEx
{
private:
    System::UnicodeString __fastcall GetAsString();
    void __fastcall SetAsString(const System::UnicodeString AValue);
public:
    System::UnicodeString RegEx;
    System::UnicodeString Options;
    __fastcall TJsonRegEx(const System::UnicodeString ARegEx, const System::UnicodeString AOptions);
    __property System::UnicodeString AsString = {read=GetAsString, write=SetAsString};
    TJsonRegEx() {}
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | System.JSON.Types.pas System.JSON.Types.hpp | System.JSON.Types | System.JSON.Types | 
Description
TJsonRegEx represents an extended JSON regular expression data type.
For further details, see extended JSON regular expression and BSON specifications.