Now I want Wipro Technology under <Title> tag.
I can fetch the value of Article Title because that is associated with a style name(attribute). Now I just want to take next node value.
Following is the sample code to get the value of Article Title:
<xsl:template match="/">
<Article>
<xsl:choose>
<xsl:when test="office:document-content/office:body/
office:text/table:table/table:table-row/table:table-cell/text:p[@text:style-name='NEESTitle']">
<xsl:variable name="title" select="office:document-content/office:body/
office:text/table:table/table:table-row/table:table-cell/text:p[@text:style-name='NEESTitle']"/>
<xsl:message> title value is from table <xsl:value-of select="$title"/></xsl:message>
<Article_Title>
<xsl:value-of select="$title"/>
</Article_Title>
</xsl:when>
</Article>
</xsl:template>