Hello ,
um using xpath into jsp .
According to what I know that the following :
<xpath:set var="channel_name" select="channelName" />
returns a string .
Let's assume that the value of this string is "foo"
I need to compare this string with other string !!
like
if (var1=="foo") then
do smth
I have already used this :
<xpath:comapre(channel_name,"foo") />
but it doesn't work .
Please advice .