Ancestry.Daisy.Tests.Documentor.Unit.Utils.RegexParserTest.ItReplaces C# (CSharp) Method

ItReplaces() private method

private ItReplaces ( string input, int offset, int length, string with ) : string
input string
offset int
length int
with string
return string
        public string ItReplaces(string input, int offset, int length, string with)
        {
            return RegexParser.Replace(input, new RegexParser.TextSpan() { Offset = offset, Length = length }, with);
        }