xmlmore.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 30 行

SCALA
30
字号
object myBreak extends scala.xml.Unparsed("<br />")object Test extends Application {  val com = <!-- thissa comment -->  val pi  = <?this is a pi foo bar = && {{ ?>  val crz = <![CDATA[ "Come, come again, whoever you are, come!Heathen, fire worshipper or idolatrous, come!Come even if you broke your penitence a hundred times,Ours is the portal of hope, come as you are."                              Mevlana Celaleddin Rumi]]>  val nazim = <foo>{myBreak}</foo> // shows use of unparsed                                            Console println com  Console println pi  Console println crz // this guy will escaped, and rightly so  Console println nazim  Console println "End Test"  <x:foo xmlns:x="gaga"/> match {    case scala.xml.QNode("gaga","foo",md,child@_*) =>  }  <x:foo xmlns:x="gaga"/> match {    case scala.xml.Node("foo",md,child@_*) =>  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?