NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Match.Result

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;

Parameters

replacement
The replacement pattern to be used by the function.

Return Value

expanded version of the passed replacement pattern

See Also

Match Class | Match Members | System.Text.RegularExpressions Namespace