System.JSON.Types.TJsonRegEx

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TJsonRegEx = record
  private
    function GetAsString: String;
    procedure SetAsString(const AValue: String);
  public
    RegEx: String;
    Options: String;
    constructor Create(const ARegEx, AOptions: String);
    property AsString: String read GetAsString write SetAsString;
  end;

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() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.JSON.Types.pas
System.JSON.Types.hpp
System.JSON.Types System.JSON.Types


Beschreibung

TJsonRegEx repräsentiert einen erweiterten regulären JSON-Ausdrucksdatentyp.

Weitere Einzelheiten finden Sie unter erweiterter regulärer JSON-Audruck (EN) und BSON-Spezifikationen (EN).

Siehe auch