Hi all,
I know I can do something ugly like this for the value I want to compare:
translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')
In a full example, that would be:
//people[ translate( firstName, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz' ) = 'john doe' ]
Is there a better/cleaner way to do this?
Thanks!
chris