我在fckeditor中插入值。
abc = Regex.Replace(FCKeditor.Value, @"<(.|\n)*?>", string.Empty);但在检索时,它会随标签一起显示内容。问题出在哪里?帮帮我。
发布于 2010-11-25 15:34:04
如果不完全知道您的输入是什么,这就有点困难了,但是,像这样的正则表达式呢?
abc = Regex.Replace(FCKeditor.Value, @"<[^>]*>", string.Empty, RegexOptions.Multiline);https://stackoverflow.com/questions/4274348
复制相似问题