Case insensitive search using XSLT

wxdqz

New Member
HiDoes anyone know how to do case insensitive search of XML files thru XSLT?Is there function that changes case?Right now i'm using something like this with MSXML3 parser:<xsl:param name="searchString"/><xsl:template match="/"><items><xsl:copy-of select="rdf:RDF/rss:item[contains(title,$searchString) orcontains(description,$searchString)]"/></items></xsl:template>it only returns case sensitive matches.Any help is appreciated.- Sergey
 
Back
Top