Scilab-Branch-6.1-GIT
- Scilabヘルプ
- XML Management
- htmlDump
- htmlRead
- htmlReadStr
- htmlWrite
- xmlAddNs
- xmlAppend
- xmlAsNumber
- xmlAsText
- xmlDelete
- xmlDocument
- xmlDTD
- xmlDump
- xmlElement
- xmlFormat
- xmlGetNsByHref
- xmlGetNsByPrefix
- xmlGetOpenDocs
- xmlGetValues
- xmlIsValidObject
- xmlName
- xmlNs
- XML Objects
- xmlRead
- xmlReadStr
- xmlRelaxNG
- xmlRemove
- xmlSchema
- xmlSetAttributes
- xmlSetValues
- xmlValidate
- xmlWrite
- xmlXPath
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xmlFormat
Scilab変数をXMLに整形する
呼び出し手順
xmlCode = xmlFormat(scilabVar)
引数
- scilabVar
scilabVar, Scilab変数
- xmlCode
xmlCode, XMLコードを含む文字列
説明
この関数は単独ではなにもしません! 有用なことを行うにはオーバーロードされる 必要があります.
Scilab変数をXMLツリーに変換する際に使用されます.
例
doc = xmlReadStr("<root><a att=""foo"" rib=""bar""><b>Hello</b></a></root>"); // このコードは失敗します: // doc.root.children(1.5) = 1.23456; // ここで, double型を処理するために %s_xmlFormat を定義します // この例ではdouble行列は処理されないことに注意してください function y=%s_xmlFormat(x), y="<number>" + string(x) + "</number>", endfunction; // 数値の挿入を再試行 doc.root.children(1.5) = 1.23456; xmlDump(doc) xmlDelete(doc);
履歴
バージョン | 記述 |
5.4.0 | XMLモジュールが導入されました. |
Report an issue | ||
<< xmlElement | XML Management | xmlGetNsByHref >> |