xsl-list
[Top] [All Lists]

RE: [xsl] Re: UTF characters

2010-03-31 09:02:57
Here is an example of the query asked earlier, suppose I have two
paragraphs:

PARA1: <p>INTRODUCTION- This is plain text</p>
PARA2: <p>INTRODUCTION- This is text with UTF character Ω </p>

AND if write something like:
<xsl:template match="p">
    <xsl:if test="contains(text(),'INTRODUCTION')">
        <!--do something-->
    </xsl:if>
</xsl:template>

It seems you are using "UTF" to mean an "unusual" character, in some sense
of the word.

Try:

<xsl:if test="matches(text(), '\P{IsBasicLatin}')">

However, it would be nice to know what you want to do differently if this
condition is true. If we knew, we might be able to suggest a better
approach.

Regards,

Michael Kay
http://www.saxonica.com/
http://twitter.com/michaelhkay 


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>