WikiFunctions.Tools.ReplaceWithSpaces C# (CSharp) Method

ReplaceWithSpaces() public static method

Replaces the values of all matches with spaces
public static ReplaceWithSpaces ( string input, MatchCollection matches ) : string
input string The article text to update
matches System.Text.RegularExpressions.MatchCollection Collection of matches to replace with spaces
return string
        public static string ReplaceWithSpaces(string input, MatchCollection matches)
        {
            return ReplaceWith(input, matches, ' ');
        }

Same methods

Tools::ReplaceWithSpaces ( string input, MatchCollection matches, int keepGroup ) : string
Tools::ReplaceWithSpaces ( string input, Regex regex ) : string
Tools::ReplaceWithSpaces ( string input, Regex regex, int keepGroup ) : string
Tools