vote up 0 vote down star

how can i express in xpath

a) need select elements which contains specified keyword. (how to make it case insensitive?)

z/x/c/v/a[normalize-space(text())='keyword']

b) need to select elements which contains any of given text() (case insensitive?)

z/x/c/v/a[normalize-space(text())='keyword|keyword2|keyword3']

Lastly,

a) how to express the node's innerHTML ?

z/x/c/v/a[normalize-space(text())='keyword'].innerHTML ?

NOTE: i am using a html parser.

flag

1 Answer

vote up 0 vote down check

There is no direct way to do case insensitive lookup in XSL. You need to convert the data in lower case or upper case and then do the lookup.

You can use the translate function to do that, something like this translate(text(), ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ’, ‘abcdefghijklmnopqrstuvwxyz’), this will convert the data to lower case.

Not sure if lower-case or upper-case kind of function are available now.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.