After I read the xml.Utility.unescape SDK xml.Utility.unescape , I would think that this is the opposite of xml.Utility.escape , but it doesn't seem to do anything:
scala> xml.Utility.escape("& <") res0: String = & < scala> val sb = new StringBuilder sb: StringBuilder = scala> xml.Utility.unescape("& <", sb) res1: StringBuilder = null scala> sb.toString res2: String = ""
How to use xml.Utility.unescape ?
user972946
source share