示例#1
0
    string RepalceData(string text)
    {
        var    tempText = text;
        string check    = TextReplacer.CheckReplace_before(tempText);

        while (!string.IsNullOrEmpty(check))
        {
            var replace = TextReplacer.GetReplaceContent_before(check);
            tempText = TextReplacer.ReplaceText_before(tempText, replace);
            check    = TextReplacer.CheckReplace_before(tempText);
        }
        return(tempText);
    }