Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xslt を使用して文字列の特定の部分のみを表示するにはどうすればよいですか。次に例を示します。
Greatest のみを表示し、2 番目の画像のみを表示したい。最初の部分のみが表示されます。
次のような部分文字列関数を使用する必要があります。
<xsl:value-of select="substring-before($yourstring, ' ')"/>
空白の前の文字列の部分のみを選択します。ともsubstringありsubstring-afterます。
substring
substring-after
それらを調べる価値があります。