XML CDATASection
ノードの表現。
// Create and log an XML document that shows how special characters like '<', // '>', and '&' are stored in a CDATASection node as compared to in a Text node. const illegalCharacters = '<em>The Amazing Adventures of Kavalier & Clay</em>'; const cdata = XmlService.createCdata(illegalCharacters); const text = XmlService.createText(illegalCharacters); const root = XmlService.createElement('root').addContent(cdata).addContent(text); const document = XmlService.createDocument(root); const xml = XmlService.getPrettyFormat().format(document); Logger.log(xml);
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
append(text) | Text | 指定されたテキストを、ノード内にすでに存在するコンテンツに追加します。 |
detach() | Content | ノードを親の Element ノードから切断します。 |
get | Element | ノードの親 Element ノードを取得します。 |
get | String | Text ノードのテキスト値を取得します。 |
get | String | ノードの直接の子または間接の子であるすべてのノードのテキスト値を、ドキュメントに表示される順序で取得します。 |
set | Text | Text ノードのテキスト値を設定します。 |
詳細なドキュメント
append(text)
get Parent Element()
get Text()
Text
ノードのテキスト値を取得します。
戻る
String
- Text
ノードのテキスト値
get Value()
ノードの直接の子または間接の子であるすべてのノードのテキスト値を、ドキュメントに表示される順序で取得します。
戻る
String
- ノードの直接または間接の子であるすべてのノードのテキスト値