|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Wild Card Search
Hi Kunal, > I was wondering if it is possible to perform a wild card search on > the following: > > <xsl:for-each > select="TAP/TutorialList/Tutorial[DifficultyLevel='Beginner']"> > > Something like > > <xsl:for-each > select="TAP/TutorialList/Tutorial[DifficultyLevel='*inne*']"> You can check whether a string contains another string with the contains() function. So you could use: TAP/TutorialList/Tutorial[contains(DifficultyLevel, 'inne')] Or, if there can be more than one DifficultyLevel within each Tutorial: TAP/TutorialList/Tutorial[DifficultyLevel[contains(., 'inne')]] There's no general regular expression testing facility in XPath 1.0, though one is introduced in XPath 2.0. Cheers, Jeni --- Jeni Tennison http://www.jenitennison.com/ XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








