如何让在Html中特殊字符不被转义

2024-11-11 01:11:17
推荐回答(5个)
回答1:

转义字符有很多,在实际编程过程中常常会用到,那么下面介绍一下常用的转义字符。

1、首先打开pycharm,新建一个工程和python文件,如图。

2、打印一段话,输入print添加内容,如下图所示。

3、接着转义字符"\n"换行,如图所示,转义字符"\t"制表符。

4、然后转义字符"\""双引号和"\'"单引号,如下图所示。

5、最后转义字符"\r"回车,如下图所示就完成了。

回答2:

  Html中特殊字符不被转义,可以使用预格式化标签。
  pre 是 Preformatted text(预格式化文本) 的缩写。使用此标签可以把代码中的空格和换行直接显示到页面上。
  例如HTML代码:
 

 

  if (xx > 5) {
  print "比5大!\n";
  }
  


  浏览器显示效果:
  if (xx > 5) {
  print "比5大!\n";
  }
  之间包含有类似的这种转义字符的时候总会被解析,倒是可以把所有的"&"通过程序替换成"&",但是有些本来就是"&"的也会被转换,这就错了。如何让之间包含的文本原封不动的显示出来呢?
  总结如下:
  解决方法有两种:
  第1种:
  


  
  
  


  第2种:
  /*将字串转为html格式*/
 

 public   String   strToHtml(String   s)
  {
  if   (s==null||s.equals(""))   return   "";
  s   =   s.replaceAll("&",   "&");
  s   =   s.replaceAll("<",   "<");
  s   =   s.replaceAll(">",   ">");
  s   =   s.replaceAll("   ",   " ");
  //     s   =   s.replaceAll("/n",   "
");
  //   s   =   s.replaceAll("'",   "'");
  return   s;
  }
  /*将html格式转为字串*/
  public   String   strToHtml(String   s)
  {
  if   (s==null||s.equals(""))   return   "";
  s   =   s.replaceAll("&","&");
  s   =   s.replaceAll("<","<");
  s   =   s.replaceAll(">",">");
  s   =   s.replaceAll(" ","   ");
  //s   =   s.replaceAll("
","/n");
  //s   =   s.replaceAll("'","'");
  return   s;
  }


  最后一点:jQuery的.html()方法默认会转义的,这种情况使用.text()就不会转义了。

回答3:

总结如下:
解决方法有两种:
第1种:





?
第2种:

/*将字串转为html格式*/
public String strToHtml(String s)
{
if (s==null||s.equals("")) return "";
s = s.replaceAll("&", "&");
s = s.replaceAll("<", "<");
s = s.replaceAll(">", ">");
s = s.replaceAll(" ", " ");
// s = s.replaceAll("/n", "
");
// s = s.replaceAll("'", "'");
return s;
}

/*将html格式转为字串*/
public String strToHtml(String s)
{
if (s==null||s.equals("")) return "";
s = s.replaceAll("&","&");
s = s.replaceAll("<","<");
s = s.replaceAll(">",">");
s = s.replaceAll(" "," ");
//s = s.replaceAll("
","/n");
//s = s.replaceAll("'","'");
return s;
}

回答4:

通过\的方式转义.
java中有特殊含义的字符(如:换行符,回车符,单引号,双引号),如果要用它,必须在前面加一个前缀“\”如换行("\n")、回车("\r")、双引号("\"")、反斜杠("\\")等

回答5:

& amp; nbsp;
前边的那个是&符号 &加nbsp是空格
所以显示到前端的样式就是
达到的结果就是未被解析