XPath Builder and tokenize
Posted: Mon Dec 15, 2008 7:50 pm
				
				I'm using Oxygen 10 build 2008120916 in Windows XP 32-bit SP3 and either the XPath 2.0 or XPath 2.0 SA engine.  
Given the following XPath pattern:The Hierarchical results view will differ from the Flat results view.  In the Hierarchical results view, the returned sequence is In the Flat results view this sequence is I believe the Flat view is correct (tokenize does not remove duplicates on its own).
			Given the following XPath pattern:
Code: Select all
tokenize("My name is Dave.  Your name is something else", "\W+")Code: Select all
("My", "name", "is", "Dave", "Your", "something", "else")Code: Select all
("My", "name", "is", "Dave", "Your", "name", "is", "something", "else")