RegExpConstructor.Construct(String, Boolean, Boolean, Boolean) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un RegExpObject objet pour le modèle et les indicateurs d’expression régulière spécifiés.
Cette API prend en charge l'infrastructure du produit et n'est pas destinée à être utilisée directement à partir de votre code.
public:
System::Object ^ Construct(System::String ^ pattern, bool ignoreCase, bool global, bool multiline);
public object Construct(string pattern, bool ignoreCase, bool global, bool multiline);
override this.Construct : string * bool * bool * bool -> obj
member this.Construct : string * bool * bool * bool -> obj
Public Function Construct (pattern As String, ignoreCase As Boolean, global As Boolean, multiline As Boolean) As Object
Paramètres
- pattern
- String
Modèle d’expression régulière à mettre en correspondance.
- ignoreCase
- Boolean
true pour utiliser la correspondance sans respect de la casse ; sinon, false.
- global
- Boolean
true pour utiliser une correspondance globale ; sinon, false.
- multiline
- Boolean
true pour utiliser une correspondance multiligne ; sinon, false.
Retours
RegExpObject Nouvel objet.