2011-01-19から1日間の記事一覧

XSLT 2.0で便利になった機能(40) instance of演算子

今回はinstance of演算子を紹介します.instance of演算子は、例えば組み込み型で使ってみると以下のようになります. 5 instance of xs:integer は true を返します. 5 instance of xs:positiveInteger は false を返します(!). "5" instance of xs:int…