I don't know if you are using ASP.net C # or not, but if so, then import first
using System.Text.RegularExpressions;
using FredCK.FCKeditorV2;
these two things, and then when you extract your value from fckeditor, use
string fckContent = Regex.Replace(FCKEditorID.value, @"<(.|\n)*?>", string.Empty);
source
share