You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <c>PCRE2_PARTIAL_SOFT</c> - Enable partial matching mode. Still try to find a complete match if a partial match is found first.
@@ -57,7 +57,7 @@ public enum PcreDfaMatchOptions : long
57
57
/// </para>
58
58
/// </remarks>
59
59
/// <see cref="PcreMatchOptions.PartialSoft"/>
60
-
PartialSoft=PcreConstants.PARTIAL_SOFT,
60
+
PartialSoft=PcreConstants.PCRE2_PARTIAL_SOFT,
61
61
62
62
/// <summary>
63
63
/// <c>PCRE2_PARTIAL_HARD</c> - Enable partial matching mode. Stop looking for a complete match if a partial match is found first.
@@ -81,7 +81,7 @@ public enum PcreDfaMatchOptions : long
81
81
/// </para>
82
82
/// </remarks>
83
83
/// <see cref="PcreMatchOptions.PartialHard"/>
84
-
PartialHard=PcreConstants.PARTIAL_HARD,
84
+
PartialHard=PcreConstants.PCRE2_PARTIAL_HARD,
85
85
86
86
/// <summary>
87
87
/// <c>PCRE2_DFA_SHORTEST</c> - Stop at the first (and therefore shortest) match.
@@ -90,5 +90,5 @@ public enum PcreDfaMatchOptions : long
90
90
/// Setting the <see cref="DfaShortest"/> option causes the matching algorithm to stop as soon as it has found one match.
91
91
/// Because of the way the alternative algorithm works, this is necessarily the shortest possible match at the first possible matching point in the subject string.
0 commit comments