學習筆記 XSLT輸出指定格式

2021-06-05 09:27:02 字數 769 閱讀 7803

qname-but-not-ncname

version = nmtoken

encoding = string

omit-xml-declaration = "yes" | "no"

standalone = "yes" | "no"

doctype-public = string

doctype-system = string

cdata-section-elements = qnames

indent = "yes" | "no"

media-type = string />

屬性詳解:

method:指定轉換後得到的結果文件格式,預設xml;

version:輸出文件的版本;

omit-xml-declaration:指定xslt處理器是否輸出乙份xml宣告;

standalone:指定xslt處理器輸出結果文件時是否新增standalone="yes";

dcotype-public:指定結果文件所使用的公共dtd的uri;

dcotype-system:指定結果文件所使用的系統dtd的uri;

cdata-section-elements:指定一系列元素名,使用cdat**段輸出聽他們文字節點;

indent:指定輸出結果文件時,是否進行合理的縮排;

media-type:指定結果文件的mime內容型別。(如輸出xml文件,該屬性值為text/xml)

printf輸出指定格式

參考部落格 printf格式輸出 flags width perc f n h l type 用到了flags中的 0 注意是零不是歐 其百科描述為 將輸出的前面補上0,直到佔滿指定列寬為止 不可以搭配使用 width 即表示需要輸出的位數。int a 4 printf 03d a 輸出 004 也...

輸出指定格式的日期。

程式分析 使用 datetime 模組。if name main pass code codec n input input the number n code.scoreofstudent n 輸出今日日期,格式為 dd mm yyyy。更多選項可以檢視 strftime 方法 print dat...

JavaScript按指定格式輸出時間

按所給的時間格式輸出指定的時間 格式說明 對於 2014.09.05 13 14 20 yyyy 年份,2014 yy 年份,14 mm 月份,補滿兩位,09 m 月份,9 dd 日期,補滿兩位,05 d 日期,5 hh 24制小時,補滿兩位,13 h 24制小時,13 hh 12制小時,補滿兩位,...