XPath выражение для создания текстовой строки с разделителями

Изменить: Похоже, что мое программное обеспечение поддерживает только XPath 1.0.:(

Мне нужно создать строку с разделителями следующего формата:

Stuff,Things;A,1;B,2

Из следующих XML-данных:

<Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="3" x:FullColumns="1" x:FullRows="1" ss:DefaultRowHeight="15">
 <Row>
  <Cell><Data ss:Type="String">Stuff</Data></Cell>
  <Cell><Data ss:Type="String">Things</Data></Cell>
 </Row>
 <Row>
  <Cell><Data ss:Type="String">A</Data></Cell>
  <Cell><Data ss:Type="Number">1</Data></Cell>
 </Row>
 <Row>
  <Cell><Data ss:Type="String">B</Data></Cell>
  <Cell><Data ss:Type="Number">2</Data></Cell>
 </Row>
</Table>

Столбцы обозначены , и строки обозначены ;, Это должно создать двумерный массив.

---------Заметки-----------

Я пробовал следующее выражение для образца XML, но оно не работает при применении с помощью NotePad++ XPatherizerNPP:

eval(eval(Row, 'concat(Cell, ";")'), "..")

Вышеупомянутое выражение выдает следующий erorr: XSLTContext is needed for this query because of an unknown function

Функция "Eval" обычно работает в MS InfoPath, но возможно, что XPatherizer не обрабатывает XPath так же, как InfoPath. Также возможно, что я не понимаю контекст этого утверждения и использую его неуместно.

Как заметка, есть ли хорошие веб-ресурсы, которые объясняют использование XPath Eval? Я не до конца понимаю и не могу найти хороших объяснений.

-------- Полный XML--------

Вот полный текст XML, который я пытаюсь использовать. Это "электронная таблица XML", созданная в MS Excel. У меня нет возможности создать собственное сопоставление XML, так как у меня нет прав для установки Инструментов XML в моей системе.

<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
 xmlns:o="urn:schemas-microsoft-com:office:office"
 xmlns:x="urn:schemas-microsoft-com:office:excel"
 xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
 xmlns:html="http://www.w3.org/TR/REC-html40">
 <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  <Author>Smith, Robert;-</Author>
  <LastAuthor>Smith, Robert;-</LastAuthor>
  <Created>2013-08-27T16:29:45Z</Created>
  <Company>SmithWorks</Company>
  <Version>14.00</Version>
 </DocumentProperties>
 <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
  <WindowHeight>10035</WindowHeight>
  <WindowWidth>22035</WindowWidth>
  <WindowTopX>240</WindowTopX>
  <WindowTopY>90</WindowTopY>
  <ProtectStructure>False</ProtectStructure>
  <ProtectWindows>False</ProtectWindows>
 </ExcelWorkbook>
 <Styles>
  <Style ss:ID="Default" ss:Name="Normal">
   <Alignment ss:Vertical="Bottom"/>
   <Borders/>
   <Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000"/>
   <Interior/>
   <NumberFormat/>
   <Protection/>
  </Style>
 </Styles>
 <Worksheet ss:Name="Sheet1">
  <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="3" x:FullColumns="1"
   x:FullRows="1" ss:DefaultRowHeight="15">
   <Row>
    <Cell><Data ss:Type="String">Stuff</Data></Cell>
    <Cell><Data ss:Type="String">Things</Data></Cell>
   </Row>
   <Row>
    <Cell><Data ss:Type="String">A</Data></Cell>
    <Cell><Data ss:Type="Number">1</Data></Cell>
   </Row>
   <Row>
    <Cell><Data ss:Type="String">B</Data></Cell>
    <Cell><Data ss:Type="Number">2</Data></Cell>
   </Row>
  </Table>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <PageSetup>
    <Header x:Margin="0.3"/>
    <Footer x:Margin="0.3"/>
    <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
   </PageSetup>
   <Selected/>
   <Panes>
    <Pane>
     <Number>3</Number>
     <ActiveRow>3</ActiveRow>
     <ActiveCol>1</ActiveCol>
    </Pane>
   </Panes>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
 </Worksheet>
 <Worksheet ss:Name="Sheet2">
  <Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="1" x:FullColumns="1"
   x:FullRows="1" ss:DefaultRowHeight="15">
  </Table>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <PageSetup>
    <Header x:Margin="0.3"/>
    <Footer x:Margin="0.3"/>
    <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
   </PageSetup>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
 </Worksheet>
 <Worksheet ss:Name="Sheet3">
  <Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="1" x:FullColumns="1"
   x:FullRows="1" ss:DefaultRowHeight="15">
  </Table>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <PageSetup>
    <Header x:Margin="0.3"/>
    <Footer x:Margin="0.3"/>
    <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
   </PageSetup>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
 </Worksheet>
</Workbook>

1 ответ

Это кажется волшебством для меня, но я попробовал это

string-join((for $n in //Row return string-join($n/Cell, ',')), ';')

и его результат - то, что вам нужно

Stuff,Things;A,1;B,2

Изменить: я забыл упомянуть, это будет работать только в XPath 2.0

Другие вопросы по тегам