You've already forked linux-packaging-mono
Imported Upstream version 3.10.0
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
This commit is contained in:
@ -89,14 +89,16 @@ namespace System.Text.RegularExpressions
|
||||
if (!regex.RightToLeft && ptr <= input.Length)
|
||||
splits.Add (input.Substring (ptr));
|
||||
|
||||
return splits.ToArray ();
|
||||
return splits.ToArray ();
|
||||
}
|
||||
|
||||
virtual public Match Scan (Regex regex, string text, int start, int end)
|
||||
public Match Scan (Regex regex, string text, int start, int end)
|
||||
{
|
||||
throw new NotImplementedException ("Scan method must be implemented in derived classes");
|
||||
return Scan (regex, text, start, end, false);
|
||||
}
|
||||
|
||||
public abstract Match Scan (Regex regex, string text, int start, int end, bool substring_mode);
|
||||
|
||||
virtual public string Result (string replacement, Match match)
|
||||
{
|
||||
return ReplacementEvaluator.Evaluate (replacement, match);
|
||||
|
Reference in New Issue
Block a user