我想將我在ActionScript中編寫的函數移植到Java中,並且遇到了一些麻煩。我已經包含了下面的功能。我發現this response to question #375420,但是我真的需要寫一個單獨的課程嗎?謝謝。 public static function replaceXML(str:String):String {
return str.replace(/[\"'&<>]
對於消除數字HTML/XML實體的好實現
和替換它們與ASCII等效? 表示爲一個單元測試: local orig = "It's the "end" &ok;
"
local fixd = unescape(orig) -- Implement this
assert(fixd == "It's the \"end\" &ok;\n")