# README
サンプルリスト
このディレクトリには以下のサンプルがあります。
file | example name | note |
---|---|---|
marshal.go | xml_marshal | xml.Marshal() についてのサンプルです. |
marshal_indent.go | xml_marshal_indent | xml.MarshalIndent() についてのサンプルです. |
unmarshal.go | xml_unmarshal | xml.Unmarshal() についてのサンプルです. |
decoder.go | xml_decoder | xml.Decoder についてのサンプルです. |
encoder.go | xml_encoder | xml.Encoder についてのサンプルです. |
nestedelements.go | xml_nested_elements | 入れ子になっている要素を取得するサンプルです |
エンコーディングが UTF-8 ではないXMLファイルのUnmarshalについては examples/singleapp/xml_shiftjisを参照。
# Packages
No description provided by the author
# Functions
Decoder は、xml.Decoder を使ったサンプルです.
Encoder は、xml.Encoder を使ったサンプルです.
No description provided by the author
MarshalIndent は、xml.MarshalIndent() を使ったサンプルです.
NestedElements -- 入れ子になっている要素を取得するサンプルです。
REFERENCES: - https://pkg.go.dev/encoding/xml@latest#Unmarshal.
No description provided by the author
Unmarshal は、xml.Unmarshal() を使ったサンプルです.