System.RegularExpressionsCore.TPerlRegExOption

提供: RAD Studio API Documentation
2023年6月28日 (水) 12:46時点におけるBuildBot (トーク | 投稿記録)による版 (ページの作成:「{{#lst:API:System.RegularExpressionsCore.TPerlRegExOption|api}} ==説明== {{#lsth:API:System.RegularExpressionsCore.TPerlRegExOption|説明}}」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

Delphi

TPerlRegExOption = (
preCaseLess,       // /i -> Case insensitive
preMultiLine,      // /m -> ^ and $ also match before/after a newline, not just at the beginning and the end of the string
preSingleLine,     // /s -> Dot matches any character, including \n (newline). Otherwise, it matches anything except \n
preExtended,       // /x -> Allow regex to contain extra whitespace, newlines and Perl-style comments, all of which will be filtered out
preAnchored,       // /A -> Successful match can only occur at the start of the subject or right after the previous match
preUnGreedy,       // Repeat operators (+, *, ?) are not greedy by default (i.e. they try to match the minimum number of characters instead of the maximum)
preNoAutoCapture   // (group) is a non-capturing group; only named groups capture
);

C++

enum DECLSPEC_DENUM TPerlRegExOption : unsigned char { preCaseLess, preMultiLine, preSingleLine, preExtended, preAnchored, preUnGreedy, preNoAutoCapture };

プロパティ

種類 可視性 ソース ユニット
enum public
System.RegularExpressionsCore.pas
System.RegularExpressionsCore.hpp
System.RegularExpressionsCore System.RegularExpressionsCore

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。