中の技術日誌ブログ

C#とC++/CLIと
VBと.NETとWindowsで戯れる
 

目次

Blog 利用状況

ニュース

自己紹介

東京でソフトウェアエンジニアをやっています。
お仕事大募集中です。
記事執筆や、講師依頼とかでも何でもどうぞ(*^_^*)
似顔絵 MSMVPロゴ
MSMVP Visual C# Since 2004/04-2013/03

記事カテゴリ

書庫

日記カテゴリ

00-整理

01-MSMVP

XMLってなぁに?(第12回)


今回はXPathについて勉強してみよう。

XMLはツリー構造というのはもう理解してもらっていると思うが、身近にツリー構造を持っているものがもう1つある。
それがファイルシステム。

c:\documents and settings\user\filename.ext

などと使うがこれらはファイルパスと呼ばれている。

同じようにある位置を指し示す為の規格がXPATHだ。

今回使うXMLはややこしくなってほしいので、前回までのXMLには引退していただいて新しいXMLを定義する。

a.xml
<?xml version="1.0" encoding="utf-8"?>
<ROOT>
 <店舗>
  <店舗名>東京店</店舗名>
  <在庫>
   <商品 値段="5000" 個数="2">HDDレコーダ</商品>
   <商品 値段="2000" 個数="1">CDプレイヤー</商品>
  </在庫>
 </店舗>
 <店舗>
  <店舗名>大阪店</店舗名>
  <在庫>
   <商品 値段="5000" 個数="3">HDDレコーダ</商品>
   <商品 値段="1800" 個数="2">CDプレイヤー</商品>
   <商品 値段="1800" 個数="2">PC</商品>
  </在庫>
 </店舗>
</ROOT>

そこそこ複雑なXMLだ。
このXMLはある商店の店舗情報とその在庫情報を網羅したXMLである。
店舗は大阪と、東京にあり、各店舗ごとに在庫管理を行っている。

このXMLからまずは店舗の一覧を抽出するXSLを書いてみよう。

a.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" />

<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>

<xsl:template match="/ROOT/店舗"><xsl:value-of select="店舗名" />
</xsl:template>

</xsl:stylesheet>

結果.txt
東京店大阪店


このようにテンプレートにばっちりとパスを記述する。
この場合には要素に対するテンプレートというよりは、構造を含んだ要素に対するテンプレートと考えるといい。

では全店舗の商品一覧を取得するxslを考えてみよう。

投稿日時 : 2004年10月3日 19:55

コメントを追加

# re: XMLってなぁに?(第12回) 2004/10/03 20:28 渋木宏明(ひどり)

規格名称としては XPath が正しいです。

# re: XMLってなぁに?(第12回) 2004/10/03 21:26 中 博俊

おっと
なおしときまーす。

# stromectol online canada http://stromectolabc.com/
ivermectin pills 2022/02/08 2:38 Busjdhj

stromectol online canada http://stromectolabc.com/
ivermectin pills

# stromectol order http://stromectolabc.com/
ivermectin 8 mg 2022/02/08 9:26 Busjdhj

stromectol order http://stromectolabc.com/
ivermectin 8 mg

# stromectol tablets buy online http://stromectolabc.com/
stromectol tab price 2022/02/08 16:29 Busjdhj

stromectol tablets buy online http://stromectolabc.com/
stromectol tab price

# vibramycin 100 mg https://doxycyline1st.com/
doxycycline 100mg 2022/02/26 19:52 Doxycycline

vibramycin 100 mg https://doxycyline1st.com/
doxycycline 100mg

# best ed treatment pills https://erectiledysfunctionpills.shop/ 2022/10/14 22:42 Erectile

best ed treatment pills https://erectiledysfunctionpills.shop/

# village ladies totally free https://topdatingsites.fun/
plenty of fish dating 2022/11/15 0:20 DatingTop

village ladies totally free https://topdatingsites.fun/
plenty of fish dating

# 12 single dating site https://datingonlinehot.com/
faroedating chat 2022/12/09 19:13 Dating

12 single dating site https://datingonlinehot.com/
faroedating chat

# ed medications online https://edpill.pro/# - ed remedies 2023/06/27 10:13 EdPills

ed medications online https://edpill.pro/# - ed remedies

# 100mg doxycycline https://doxycycline.forum/ generic for doxycycline 2023/11/25 9:03 Doxycycline

100mg doxycycline https://doxycycline.forum/ generic for doxycycline

# comprare farmaci online con ricetta https://farmaciait.pro/ comprare farmaci online con ricetta 2023/12/04 7:03 Farmacia

comprare farmaci online con ricetta https://farmaciait.pro/ comprare farmaci online con ricetta

# 3000mg prednisone https://prednisone.bid/ buy prednisone online fast shipping 2023/12/27 6:51 Prednisone

3000mg prednisone https://prednisone.bid/ buy prednisone online fast shipping

# cheap erectile dysfunction https://edpill.cheap/ cure ed 2024/02/09 22:49 EdPills

cheap erectile dysfunction https://edpill.cheap/ cure ed

# aviator bet https://aviatorjogar.online/ - aviator jogo
2024/03/12 20:54 BraAvia

aviator bet https://aviatorjogar.online/ - aviator jogo

# game c&#7901; b&#7841;c online uy t&#237;n http://casinvietnam.shop/# - game c&#7901; b&#7841;c online uy t&#237;n
2024/04/17 16:07 Vietnam

game c&#7901; b&#7841;c online uy t&#237;n http://casinvietnam.shop/# - game c&#7901; b&#7841;c online uy t&#237;n

タイトル
名前
URL
コメント