• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

xsl tokenize issue

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I need to parse a string of pattern, a|b|c|d|e..
I am trying to parse it using tokenize function in xsl.
but, the following exception is given:

javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Could not find function: tokenize
at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:984)

Let me know if you have any idea.
Also let me know, if there is any other way of parsing the string in xsl.
and what are the includes and version required.

Thanks in Advance
Tayaru
 
Marshal
Posts: 28177
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The tokenize function belongs to XSLT 2.0, you cannot use it in the XSLT 1.0 product you are using. If you want to use it, and other XSLT 2.0 functions, you will need to use a transformer that supports XSLT 2.0. Saxon is one, and there may be others.

Or if you want to stick with the transformer you are using now, just google for "xsl tokenize". When I did that I got at least four web pages explaining how to do it.
[ August 20, 2007: Message edited by: Paul Clapham ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic