powered by simpleCommunicator - 2.0.28     © 2024 Programmizd 02
Map
Форумы / XML, XSL, XPath, XQuery [игнор отключен] [закрыт для гостей] / xsl:for-each доступ предыдущему/последующему элементу
3 сообщений из 3, страница 1 из 1
xsl:for-each доступ предыдущему/последующему элементу
    #39908288
wwee12
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Здравствуйте!
Подскажите пожалуйста как мы сделать вместо:

Create table CI_have_CI_have
AI_the_AI_the

чтобы получилось

Create table CI_have_AI_the ?


Код: xml
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="new.xsl" version="1.0"
?>
<schema format="0.99" date="2019-10-30" time="14:23:10">
	<tie>
	<anchorRole role="have" type="CI" identifier="false">
	</anchorRole>
	<anchorRole role="the" type="AI" identifier="true">
	</anchorRole>
    </tie>
</schema>



Код: xml
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes" method="html"/>
    <xsl:template match="/schema">
		<xsl:for-each select="./tie"> 
			<xsl:text>Create table </xsl:text>
			<xsl:for-each select="./anchorRole"> 
			<xsl:apply-templates select="@type"/>
			<xsl:text>_</xsl:text>
			<xsl:apply-templates select="@role"/>
			<xsl:text>_</xsl:text>
			<xsl:apply-templates select="@type"/>
			<xsl:text>_</xsl:text>
			<xsl:apply-templates select="@role"/>
			

			</xsl:for-each>
	</xsl:for-each>
    </xsl:template>
</xsl:stylesheet>
...
Рейтинг: 0 / 0
xsl:for-each доступ предыдущему/последующему элементу
    #39908478
Фотография _Vasilisk_
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
Код: xml
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes" method="html"/>

  <xsl:template match="/schema">
    <xsl:for-each select="./tie"> 
      <xsl:text>Create table </xsl:text>
      <xsl:apply-templates select="anchorRole[1]"/>
      <xsl:text>_</xsl:text>
      <xsl:apply-templates select="anchorRole[2]"/>
    </xsl:for-each>
  </xsl:template>

  <xsl:template match="anchorRole">
    <xsl:apply-templates select="@type"/>
    <xsl:text>_</xsl:text>
    <xsl:apply-templates select="@role"/>
  </xsl:template>
</xsl:stylesheet>
...
Рейтинг: 0 / 0
xsl:for-each доступ предыдущему/последующему элементу
    #39908503
wwee12
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Спасибо!!!
...
Рейтинг: 0 / 0
3 сообщений из 3, страница 1 из 1
Форумы / XML, XSL, XPath, XQuery [игнор отключен] [закрыт для гостей] / xsl:for-each доступ предыдущему/последующему элементу
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]