[
Lists Home |
Date Index |
Thread Index
]
Are there tools / libraries to convert a java expression to an XPATH query?
e.g.
(( B > 100 ) && (C == 100) || (STR == "HELO"/*this is not a valid
though*/))
to an XPATH (not validated.)
//root[(@B > 100 and (@C = '100']) or (@STR='HELO')]
This would help provide sql or java expression support when using xalan /
jakarta .
Thanks.
|