Returns the expansion of the passed replacement pattern. For example, if the replacement pattern is ?$1$2?, Result returns the concatenation of Group(1).ToString() and Group(2).ToString().
[Visual Basic] Overridable Public Function Result( _ ByVal replacement As String _ ) As String [C#] public virtual string Result( string replacement ); [C++] public: virtual String* Result( String* replacement ); [JScript] public function Result( replacement : String ) : String;
expanded version of the passed replacement pattern
Match Class | Match Members | System.Text.RegularExpressions Namespace