Remark : 단어 다음 문장만 보여주기
1 2 3 4 5 6 |
<xsl:value-of select="format-number(substring-after(@ApproximateBasePrice,'KRW'),'#,###.##')"/>원 KRW3492200 => 3,492,200원 |
단어 이전 문장만 보여주기
1 2 3 4 5 6 7 8 9 10 11 |
<xsl:variable name="Key"> <xsl:value-of select="substring-before(@Key,'==')" /> </xsl:variable> <xsl:value-of select="$Key" /> TzW600E0nDKAYLit9hAAAA== => TzW600E0nDKAYLit9hAAAA |