为了更清楚地说明 XML 结构,我将把每个标签写在一行中。
不幸的是,结果包含(转换为文本后)不止一行,因此断言失败。我需要将整个结果作为没有换行符的单行
val row = <row>
<fromSubsystem>02</fromSubsystem>
<toSubsystem>01</toSubsystem>
<action>E013</action>
<comment>return to customer</comment>
</row>
println("==> " + row.text)
assert(row.text == "0201E013return to customer")
==>
02
01
E013
return to customer
Exception in thread "main" java.lang.AssertionError: assertion failed
at scala.Predef$.assert(Predef.scala:146)
在此先感谢您提供优雅的解决方案!
庞戈