回车和换行

    技术2022-05-11  82

    public   string   formatString(string   str)    {     str=str.Replace("   "," ");    str=str.Replace("<","<");    str=str.Replace(">",">");    str=str.Replace("/n","<br/>");    return   str;    }  

    最新回复(0)