vote up 0 vote down star

Hello,

I need to make an statement where the test pass if there is just one asterisk in a string from the source document.

Thus, something like

<xslt:if test="count(find('\*', @myAttribute)) = 1)>
    There is one asterisk in myAttribute
</xslt:if>

I need the functionality for XSLT 1, but answers for XSLT 2 will be appreciated as well, but won't get acceptance unless its impossible in XSLT 1.

flag

70% accept rate
Maybe something like stringlength(replace('[^*]', '', @myAttribute)) == 1 would work? – Hugo Jul 31 at 8:05
Ended up using this rule: <xsl:if test="translate(@myAttribute, 'abcdefghijklmnopqrstuvwxyz\.', '') = '*'"> single asterisk... </xsl:if> If you have better answers, please post them! – Hugo Jul 31 at 8:40

2 Answers

vote up 1 vote down check

In XPath 1.0, we can do it by removing all asterisks using translate and comparing the length:

string-length(@myAttribute) - string-length(translate(@myAttribute, '*', '')) = 1

In XPath 2.0, I'd probably do this:

count(string-to-codepoints(@myAttribute)[. = string-to-codepoints('*')]) = 1
link|flag
vote up 1 vote down

Another solution that should work in XPath 1.0:

contains(@myAttribute, '*') and not(contains(substring-after(@myAttribute, '*'), '*'))
link|flag
Nice answer. It looks a bit more specific than the question asks, but actually works well in my case, since the asterisk would always end the phrase. thanks, but the xpath 2 answer is slightly better. – Hugo Aug 2 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.