替换XamlPackage中的文本

时间:2012-02-10 13:19:48

标签: c# wpf string flowdocument

我在RichTextBox中有一些文字。此文本包含标签,例如:[@TagName!]。我想用数据库中的一些数据替换这些标签而不会丢失格式(字体,颜色,图像等)。我创建了一个方法:

 void ReplaceTagsWithData(FlowDocument doc)
    {
        FileStream fs = new FileStream("tmp.xml", FileMode.Create);
        TextRange trTextRange = 
            new TextRange(doc.ContentStart, doc.ContentEnd);

        trTextRange.Save(fs, DataFormats.Xaml);
        fs.Dispose();
        fs.Close();

        StreamReader sr = new StreamReader("tmp.xml");

        string rtbContent = sr.ReadToEnd();

        MatchCollection mColl = 
            Regex.Matches(rtbContent, 
                          string.Format(@"\{0}+[a-zA-Z]+{1}", 
                          prefix, 
                          postfix));

        foreach (Match m in mColl)
        {
            string colname = 
                m.Value.Substring(prefix.Length, 
                   (int)(m.Value.Length - (prefix.Length + postfix.Length)));

            rtbContent = rtbContent.Replace(m.Value.ToString(), 
                                            dt.Rows[0][colname].ToString());
        }

        rtbEdit.Document = 
            new FlowDocument(
                (Section)XamlReader.Load(
                    XmlReader.Create(new StringReader(rtbContent))));
        sr.Dispose();
        sr.Close();
    }

它非常好,但它从内容中删除了图像。我知道我应该使用XamlPackage而不是Xaml但是我不能把它作为纯文本。还有其他解决办法吗?

感谢您的回答。 ;)

[编辑:13-02-2012 02:14(am)]

我的工作解决方案:

    void ReplaceTagsWithData(RichTextBox rtb)
{
    FlowDocument doc = rtb.Document;

    FileStream fs = new FileStream("tmp", FileMode.Create);
    TextRange trTextRange = new TextRange(doc.ContentStart, doc.ContentEnd);
    trTextRange.Save(fs, DataFormats.Rtf);
    fs.Dispose();
    fs.Close();

    StreamReader sr = new StreamReader("tmp");
    string rtbContent = sr.ReadToEnd();
    sr.Dispose();
    sr.Close();

    MatchCollection mColl = 
        Regex.Matches(rtbContent, 
                      string.Format(@"\{0}+[a-zA-Z]+{1}", 
                      prefix, 
                      postfix));

    foreach (Match m in mColl)
    {
        string colname = 
            m.Value.Substring(prefix.Length, 
                (int)(m.Value.Length - (prefix.Length + postfix.Length)));

        rtbContent = rtbContent.Replace(m.Value.ToString(), 
                                        dt.Rows[0][colname].ToString());
    }
    MemoryStream stream = 
        new MemoryStream(ASCIIEncoding.Default.GetBytes(rtbContent));
    rtb.SelectAll();
    rtb.Selection.Load(stream, DataFormats.Rtf);

}

也许它不是最好的,但它正常工作。

它解决了。但我无法发布解决方案,因为它在公司服务器上,我再也无法访问了。

3 个答案:

答案 0 :(得分:1)

您可以使用Razor Engine在模板主题中执行任何操作。您可以从nuget(http://www.nuget.org/packages/RazorEngine)下载,无需任何设置配置即可使用Razor语法执行此操作。例如,您的模板可以是:

<Window x:Class="<class>"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="@Model.Title"
        Icon="@Model.Icon">
  <Grid>    
  </Grid>
</Window>

注意:@ Model.Title和@ Model.Icon来自Razor

实际上我将RazorEngine用于我的所有模板任务: 电子邮件,即时生成报告(rdlc)等......

答案 1 :(得分:0)

你正在使用的正则表达式是贪婪的,所以匹配从一个令牌的开头到下一个令牌的结尾的所有内容。将其更改为@"\{0}[a-zA-Z]+?{1}"以获得更好的匹配。

此外,使用带有lambda的Regex.Replace的重载将是更清晰的代码。

答案 2 :(得分:-2)

尝试使用Regex.Replace方法。您可以在MSDN中找到对该方法的引用 http://msdn.microsoft.com/en-us/library/xwewhkd1.aspx